801 lines
2.8 MiB
801 lines
2.8 MiB
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"# TradingAgents Tools Testing Notebook\n",
|
|
"\n",
|
|
"This notebook allows you to test all available tools in the TradingAgents application.\n",
|
|
"\n",
|
|
"## Setup"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 28,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"✅ Setup complete!\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"import sys\n",
|
|
"import os\n",
|
|
"from dotenv import load_dotenv\n",
|
|
"\n",
|
|
"# Load environment variables\n",
|
|
"load_dotenv()\n",
|
|
"\n",
|
|
"# Import the routing interface\n",
|
|
"from tradingagents.dataflows.interface import route_to_vendor\n",
|
|
"\n",
|
|
"print(\"✅ Setup complete!\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Test Parameters\n",
|
|
"\n",
|
|
"Set common parameters for testing:"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 29,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Testing with ticker: AAPL\n",
|
|
"Date range: 2024-01-01 to 2024-01-31\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"# Test parameters\n",
|
|
"TEST_TICKER = \"AAPL\"\n",
|
|
"TEST_START_DATE = \"2024-01-01\"\n",
|
|
"TEST_END_DATE = \"2024-01-31\"\n",
|
|
"TEST_CURRENT_DATE = \"2024-01-31\"\n",
|
|
"TEST_LOOKBACK_DAYS = 7\n",
|
|
"\n",
|
|
"print(f\"Testing with ticker: {TEST_TICKER}\")\n",
|
|
"print(f\"Date range: {TEST_START_DATE} to {TEST_END_DATE}\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"---\n",
|
|
"\n",
|
|
"# 1. Core Stock APIs\n",
|
|
"\n",
|
|
"## 1.1 Get Stock Data (OHLCV)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_stock_data\",\n",
|
|
" symbol=TEST_TICKER,\n",
|
|
" start_date=TEST_START_DATE,\n",
|
|
" end_date=TEST_END_DATE\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 1.2 Validate Ticker"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"# Test valid ticker\n",
|
|
"valid = route_to_vendor(\"validate_ticker\", symbol=\"AAPL\")\n",
|
|
"print(f\"AAPL is valid: {valid}\")\n",
|
|
"\n",
|
|
"# Test invalid ticker\n",
|
|
"invalid = route_to_vendor(\"validate_ticker\", symbol=\"INVALID123\")\n",
|
|
"print(f\"INVALID123 is valid: {invalid}\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"---\n",
|
|
"\n",
|
|
"# 2. Technical Indicators"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"# Available indicators: close_50_sma, close_200_sma, close_10_ema, macd, macds, macdh, rsi, boll, boll_ub, boll_lb, atr, vwma, mfi\n",
|
|
"\n",
|
|
"result = route_to_vendor(\n",
|
|
" \"get_indicators\",\n",
|
|
" symbol=TEST_TICKER,\n",
|
|
" indicator=\"rsi\",\n",
|
|
" curr_date=TEST_CURRENT_DATE,\n",
|
|
" look_back_days=TEST_LOOKBACK_DAYS\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"---\n",
|
|
"\n",
|
|
"# 3. Fundamental Data\n",
|
|
"\n",
|
|
"## 3.1 Get Fundamentals"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_fundamentals\",\n",
|
|
" ticker=TEST_TICKER,\n",
|
|
" curr_date=TEST_CURRENT_DATE\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 3.2 Get Balance Sheet"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_balance_sheet\",\n",
|
|
" ticker=TEST_TICKER,\n",
|
|
" freq=\"quarterly\"\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 3.3 Get Cash Flow"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_cashflow\",\n",
|
|
" ticker=TEST_TICKER,\n",
|
|
" freq=\"quarterly\"\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 3.4 Get Income Statement"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_income_statement\",\n",
|
|
" ticker=TEST_TICKER,\n",
|
|
" freq=\"quarterly\"\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 3.5 Get Analyst Recommendation Trends (Finnhub)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_recommendation_trends\",\n",
|
|
" ticker=TEST_TICKER\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"---\n",
|
|
"\n",
|
|
"# 4. News Data\n",
|
|
"\n",
|
|
"## 4.1 Get Company News"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_news\",\n",
|
|
" ticker=TEST_TICKER,\n",
|
|
" start_date=TEST_START_DATE,\n",
|
|
" end_date=TEST_END_DATE\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 4.2 Get Global News"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_global_news\",\n",
|
|
" curr_date=TEST_CURRENT_DATE,\n",
|
|
" look_back_days=TEST_LOOKBACK_DAYS\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 4.3 Get Insider Sentiment"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_insider_sentiment\",\n",
|
|
" ticker=TEST_TICKER,\n",
|
|
" curr_date=TEST_CURRENT_DATE\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 4.4 Get Insider Transactions"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_insider_transactions\",\n",
|
|
" ticker=TEST_TICKER,\n",
|
|
" curr_date=TEST_CURRENT_DATE\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"---\n",
|
|
"\n",
|
|
"# 5. Social Media & Discovery\n",
|
|
"\n",
|
|
"## 5.1 Get Twitter Tweets"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_tweets\",\n",
|
|
" query=\"AAPL stock\",\n",
|
|
" count=10\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 5.2 Get Tweets from User"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_tweets_from_user\",\n",
|
|
" username=\"elonmusk\",\n",
|
|
" count=10\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 5.3 Get Reddit Trending Tickers"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_trending_tickers\",\n",
|
|
" limit=10,\n",
|
|
" look_back_days=3\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## 5.4 Get Market Movers (Top Gainers/Losers)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 31,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"## Top Market Movers (Alpha Vantage)\n",
|
|
"\n",
|
|
"### Top Gainers\n",
|
|
"| Ticker | Price | Change % | Volume |\n",
|
|
"|--------|-------|----------|--------|\n",
|
|
"| SMXWW | 0.145 | 327.7286% | 1841372 |\n",
|
|
"| SMX | 61.04 | 250.8046% | 22477681 |\n",
|
|
"| USARW | 2.01 | 105.102% | 1672803 |\n",
|
|
"| MSPRZ | 0.0299 | 96.7105% | 21756 |\n",
|
|
"| RELIW | 0.0389 | 93.5323% | 1542 |\n",
|
|
"| BTBDW | 0.2287 | 66.8125% | 200 |\n",
|
|
"| CREVW | 0.0154 | 65.5914% | 3000 |\n",
|
|
"| KWMWW | 0.06 | 50.0% | 3321 |\n",
|
|
"| KTTAW | 0.059 | 49.3671% | 500259 |\n",
|
|
"| ONMDW | 0.18 | 47.541% | 125736 |\n",
|
|
"\n",
|
|
"### Top Losers\n",
|
|
"| Ticker | Price | Change % | Volume |\n",
|
|
"|--------|-------|----------|--------|\n",
|
|
"| ANPA | 16.31 | -37.4137% | 34933 |\n",
|
|
"| GRAF+ | 0.3445 | -33.3656% | 23000 |\n",
|
|
"| NVNIW | 0.0564 | -29.5% | 5000 |\n",
|
|
"| ECDA | 0.3865 | -27.8379% | 3535478 |\n",
|
|
"| BKSY+ | 0.13 | -27.7778% | 25681 |\n",
|
|
"| CLSD | 0.41 | -26.9553% | 2630564 |\n",
|
|
"| SIMAW | 0.2643 | -26.5833% | 5900 |\n",
|
|
"| RUBI | 0.1596 | -26.1795% | 51271344 |\n",
|
|
"| ASBPW | 0.0223 | -25.6667% | 5149 |\n",
|
|
"| AREBW | 0.0201 | -25.5556% | 31830 |\n",
|
|
"\n",
|
|
"### Most Active\n",
|
|
"| Ticker | Price | Change % | Volume |\n",
|
|
"|--------|-------|----------|--------|\n",
|
|
"| KTTA | 1.46 | 37.7358% | 165933385 |\n",
|
|
"| SOXS | 3.435 | -5.3719% | 122241561 |\n",
|
|
"| NVDA | 176.98 | -1.8196% | 121124850 |\n",
|
|
"| HBI | 6.47 | -1.8209% | 112067002 |\n",
|
|
"| AMZE | 0.4745 | 19.8232% | 110468270 |\n",
|
|
"| MSTU | 1.2 | 1.6949% | 107162034 |\n",
|
|
"| BEAT | 0.77 | 27.5468% | 99820797 |\n",
|
|
"| TLRY | 0.8149 | -20.8835% | 98423610 |\n",
|
|
"| INTC | 40.56 | 10.1874% | 95679708 |\n",
|
|
"| BITF | 3.48 | 12.2581% | 86448233 |\n",
|
|
"\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"result = route_to_vendor(\n",
|
|
" \"get_market_movers\",\n",
|
|
" limit=10\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"---\n",
|
|
"\n",
|
|
"# 6. Batch Testing\n",
|
|
"\n",
|
|
"Test multiple tools at once:"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"def test_all_tools_for_ticker(ticker, current_date):\n",
|
|
" \"\"\"Test all applicable tools for a given ticker.\"\"\"\n",
|
|
" \n",
|
|
" print(f\"\\n{'='*60}\")\n",
|
|
" print(f\"Testing all tools for {ticker}\")\n",
|
|
" print(f\"{'='*60}\\n\")\n",
|
|
" \n",
|
|
" tools_to_test = [\n",
|
|
" (\"validate_ticker\", {\"symbol\": ticker}),\n",
|
|
" (\"get_fundamentals\", {\"ticker\": ticker, \"curr_date\": current_date}),\n",
|
|
" (\"get_recommendation_trends\", {\"ticker\": ticker}),\n",
|
|
" (\"get_insider_transactions\", {\"ticker\": ticker, \"curr_date\": current_date}),\n",
|
|
" (\"get_news\", {\"ticker\": ticker, \"start_date\": \"2024-01-01\", \"end_date\": \"2024-01-31\"}),\n",
|
|
" ]\n",
|
|
" \n",
|
|
" results = {}\n",
|
|
" \n",
|
|
" for tool_name, params in tools_to_test:\n",
|
|
" print(f\"\\n🔧 Testing: {tool_name}\")\n",
|
|
" print(\"-\" * 60)\n",
|
|
" try:\n",
|
|
" result = route_to_vendor(tool_name, **params)\n",
|
|
" results[tool_name] = \"✅ Success\"\n",
|
|
" print(result[:500] + \"...\" if len(str(result)) > 500 else result)\n",
|
|
" except Exception as e:\n",
|
|
" results[tool_name] = f\"❌ Error: {str(e)}\"\n",
|
|
" print(f\"Error: {e}\")\n",
|
|
" \n",
|
|
" print(f\"\\n{'='*60}\")\n",
|
|
" print(\"Summary:\")\n",
|
|
" print(f\"{'='*60}\")\n",
|
|
" for tool, status in results.items():\n",
|
|
" print(f\"{tool}: {status}\")\n",
|
|
" \n",
|
|
" return results\n",
|
|
"\n",
|
|
"# Run batch test\n",
|
|
"test_results = test_all_tools_for_ticker(\"AAPL\", \"2024-01-31\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"---\n",
|
|
"\n",
|
|
"# 7. Custom Testing\n",
|
|
"\n",
|
|
"Use this cell to test any tool with custom parameters:"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 30,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"## Analyst Recommendation Trends for TSLA\n",
|
|
"\n",
|
|
"### 2025-11-01\n",
|
|
"- **Strong Buy**: 8\n",
|
|
"- **Buy**: 22\n",
|
|
"- **Hold**: 19\n",
|
|
"- **Sell**: 10\n",
|
|
"- **Strong Sell**: 2\n",
|
|
"- **Total Analysts**: 61\n",
|
|
"\n",
|
|
"**Sentiment**: 49.2% Bullish, 19.7% Bearish\n",
|
|
"\n",
|
|
"### 2025-10-01\n",
|
|
"- **Strong Buy**: 9\n",
|
|
"- **Buy**: 20\n",
|
|
"- **Hold**: 20\n",
|
|
"- **Sell**: 9\n",
|
|
"- **Strong Sell**: 2\n",
|
|
"- **Total Analysts**: 60\n",
|
|
"\n",
|
|
"**Sentiment**: 48.3% Bullish, 18.3% Bearish\n",
|
|
"\n",
|
|
"### 2025-09-01\n",
|
|
"- **Strong Buy**: 8\n",
|
|
"- **Buy**: 20\n",
|
|
"- **Hold**: 23\n",
|
|
"- **Sell**: 8\n",
|
|
"- **Strong Sell**: 3\n",
|
|
"- **Total Analysts**: 62\n",
|
|
"\n",
|
|
"**Sentiment**: 45.2% Bullish, 17.7% Bearish\n",
|
|
"\n",
|
|
"### 2025-08-01\n",
|
|
"- **Strong Buy**: 8\n",
|
|
"- **Buy**: 19\n",
|
|
"- **Hold**: 23\n",
|
|
"- **Sell**: 8\n",
|
|
"- **Strong Sell**: 3\n",
|
|
"- **Total Analysts**: 61\n",
|
|
"\n",
|
|
"**Sentiment**: 44.3% Bullish, 18.0% Bearish\n",
|
|
"\n",
|
|
"\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"# Example: Custom tool test\n",
|
|
"result = route_to_vendor(\n",
|
|
" \"get_recommendation_trends\", # Tool name\n",
|
|
" ticker=\"TSLA\" # Parameters\n",
|
|
")\n",
|
|
"print(result)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 32,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"from tradingagents.dataflows.y_finance import (\n",
|
|
" get_YFin_data_online,\n",
|
|
" get_stock_stats_indicators_window,\n",
|
|
" get_balance_sheet as get_yfinance_balance_sheet,\n",
|
|
" get_cashflow as get_yfinance_cashflow,\n",
|
|
" get_income_statement as get_yfinance_income_statement,\n",
|
|
" get_insider_transactions as get_yfinance_insider_transactions,\n",
|
|
" validate_ticker as validate_ticker_yfinance,\n",
|
|
")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 39,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"# Insider Transactions data for AAPL\n",
|
|
"# Data retrieved on: 2025-12-02 19:53:31\n",
|
|
"\n",
|
|
",Shares,Value,URL,Text,Insider,Position,Transaction,Start Date,Ownership\n",
|
|
"0,3750,0.0,,Stock Gift at price 0.00 per share.,ADAMS KATHERINE L,General Counsel,,2025-11-12,D\n",
|
|
"1,3752,1017655.0,,Sale at price 271.23 per share.,KONDO CHRISTOPHER,Officer,,2025-11-07,D\n",
|
|
"2,4199,1038787.0,,Sale at price 245.89 - 248.73 per share.,PAREKH KEVAN,Chief Financial Officer,,2025-10-16,D\n",
|
|
"3,16457,,,,PAREKH KEVAN,Chief Financial Officer,,2025-10-15,D\n",
|
|
"4,7371,,,,KONDO CHRISTOPHER,Officer,,2025-10-15,D\n",
|
|
"5,129963,33375723.0,,Sale at price 254.83 - 257.57 per share.,COOK TIMOTHY D,Chief Executive Officer,,2025-10-02,D\n",
|
|
"6,43013,11071078.0,,Sale at price 257.36 - 258.08 per share.,O'BRIEN DEIRDRE,Officer,,2025-10-02,D\n",
|
|
"7,47125,12101154.0,,Sale at price 254.83 - 257.54 per share.,ADAMS KATHERINE L,General Counsel,,2025-10-02,D\n",
|
|
"8,92403,,,,ADAMS KATHERINE L,General Counsel,,2025-10-01,D\n",
|
|
"9,277206,,,,COOK TIMOTHY D,Chief Executive Officer,,2025-10-01,D\n",
|
|
"10,92403,,,,O'BRIEN DEIRDRE,Officer,,2025-10-01,D\n",
|
|
"11,92403,,,,KHAN SABIH,Chief Operating Officer,,2025-10-01,D\n",
|
|
"12,90000,20886300.0,,Sale at price 232.07 per share.,LEVINSON ARTHUR D,Director,,2025-08-28,D\n",
|
|
"13,435,0.0,,Stock Gift at price 0.00 per share.,KONDO CHRISTOPHER,Officer,,2025-08-25,D\n",
|
|
"14,34821,7772047.0,,Sale at price 223.20 per share.,O'BRIEN DEIRDRE,Officer,,2025-08-08,D\n",
|
|
"15,4486,933955.0,,Sale at price 208.19 per share.,KONDO CHRISTOPHER,Officer,,2025-05-12,D\n",
|
|
"16,4570,941420.0,,Sale at price 206.00 per share.,PAREKH KEVAN,Chief Financial Officer,,2025-04-23,D\n",
|
|
"17,16458,,,,PAREKH KEVAN,Chief Financial Officer,,2025-04-15,D\n",
|
|
"18,7373,,,,KONDO CHRISTOPHER,Officer,,2025-04-15,D\n",
|
|
"19,38822,8683252.0,,Sale at price 221.68 - 224.62 per share.,ADAMS KATHERINE L,General Counsel,,2025-04-02,D\n",
|
|
"20,35493,7950691.0,,Sale at price 223.48 - 225.03 per share.,WILLIAMS JEFFREY E,Chief Operating Officer,,2025-04-02,D\n",
|
|
"21,108136,24184658.0,,Sale at price 221.77 - 224.76 per share.,COOK TIMOTHY D,Chief Executive Officer,,2025-04-02,D\n",
|
|
"22,74535,,,,ADAMS KATHERINE L,General Counsel,,2025-04-01,D\n",
|
|
"23,218568,,,,COOK TIMOTHY D,Chief Executive Officer,,2025-04-01,D\n",
|
|
"24,74535,,,,O'BRIEN DEIRDRE,Officer,,2025-04-01,D\n",
|
|
"25,74535,,,,WILLIAMS JEFFREY E,Chief Operating Officer,,2025-04-01,D\n",
|
|
"26,1516,343147.0,,Sale at price 226.35 per share.,LEVINSON ARTHUR D,Director,,2025-02-03,D\n",
|
|
"27,1516,,,,LEVINSON ARTHUR D,Director,,2025-01-31,D\n",
|
|
"28,1516,,,,GORSKY ALEX,Director,,2025-01-31,D\n",
|
|
"29,1516,,,,LOZANO MONICA C.,Director,,2025-01-31,D\n",
|
|
"30,1516,,,,WAGNER SUSAN L,Director,,2025-01-31,D\n",
|
|
"31,1516,,,,JUNG ANDREA,Director,,2025-01-31,D\n",
|
|
"32,1516,,,,SUGAR RONALD D,Director,,2025-01-31,D\n",
|
|
"33,1516,,,,AUSTIN WANDA M,Director,,2025-01-31,D\n",
|
|
"34,100000,24997395.0,,Sale at price 248.61 - 251.10 per share.,WILLIAMS JEFFREY E,Chief Operating Officer,,2024-12-16,I\n",
|
|
"35,200000,45464500.0,,Sale at price 224.68 - 229.28 per share.,LEVINSON ARTHUR D,Director,,2024-11-19,D\n",
|
|
"36,4130,945233.0,,Sale at price 228.87 per share.,KONDO CHRISTOPHER,Officer,,2024-11-18,D\n",
|
|
"37,8000,0.0,,Stock Gift at price 0.00 per share.,ADAMS KATHERINE L,General Counsel,,2024-11-05,D\n",
|
|
"38,8115,,,,KONDO CHRISTOPHER,Officer,,2024-10-15,D\n",
|
|
"39,59305,13433769.0,,Sale at price 226.52 per share.,MAESTRI LUCA,Chief Financial Officer,,2024-10-04,D\n",
|
|
"40,223986,50276355.0,,Sale at price 223.75 - 226.57 per share.,COOK TIMOTHY D,Chief Executive Officer,,2024-10-02,D\n",
|
|
"41,61019,13843382.0,,Sale at price 226.72 - 227.13 per share.,O'BRIEN DEIRDRE,Officer,,2024-10-02,D\n",
|
|
"42,59730,13550148.0,,Sale at price 226.80 - 227.22 per share.,WILLIAMS JEFFREY E,Chief Operating Officer,,2024-10-02,D\n",
|
|
"43,61019,13802297.0,,Sale at price 223.79 - 227.24 per share.,ADAMS KATHERINE L,General Counsel,,2024-10-02,D\n",
|
|
"44,127282,,,,ADAMS KATHERINE L,General Counsel,,2024-10-01,D\n",
|
|
"45,477301,,,,COOK TIMOTHY D,Chief Executive Officer,,2024-10-01,D\n",
|
|
"46,127282,,,,O'BRIEN DEIRDRE,Officer,,2024-10-01,D\n",
|
|
"47,127282,,,,WILLIAMS JEFFREY E,Chief Operating Officer,,2024-10-01,D\n",
|
|
"48,127282,,,,MAESTRI LUCA,Chief Financial Officer,,2024-10-01,D\n",
|
|
"49,8706,1958850.0,,Sale at price 225.00 per share.,KONDO CHRISTOPHER,Officer,,2024-08-15,D\n",
|
|
"50,5178,1121037.0,,Sale at price 216.50 per share.,KONDO CHRISTOPHER,Officer,,2024-08-09,D\n",
|
|
"51,4500,0.0,,Stock Gift at price 0.00 per share.,ADAMS KATHERINE L,General Counsel,,2024-08-07,D\n",
|
|
"52,100000,20643512.0,,Sale at price 206.42 - 207.05 per share.,ADAMS KATHERINE L,General Counsel,,2024-08-05,D\n",
|
|
"53,75000,14368500.0,,Sale at price 191.58 per share.,LEVINSON ARTHUR D,Director,,2024-05-30,D\n",
|
|
"54,4999,951785.0,,Sale at price 190.40 per share.,KONDO CHRISTOPHER,Officer,,2024-05-15,D\n",
|
|
"55,1850,0.0,,Stock Gift at price 0.00 per share.,ADAMS KATHERINE L,General Counsel,,2024-05-10,D\n",
|
|
"56,8119,,,,KONDO CHRISTOPHER,Officer,,2024-04-15,D\n",
|
|
"57,59162,10188880.0,,Sale at price 172.22 per share.,WILLIAMS JEFFREY E,Chief Operating Officer,,2024-04-11,I\n",
|
|
"58,53194,9261933.0,,Sale at price 173.19 - 175.02 per share.,MAESTRI LUCA,Chief Financial Officer,,2024-04-11,D\n",
|
|
"59,196410,33258614.0,,Sale at price 168.62 - 170.03 per share.,COOK TIMOTHY D,Chief Executive Officer,,2024-04-02,D\n",
|
|
"60,54732,9244782.0,,Sale at price 168.91 per share.,O'BRIEN DEIRDRE,Officer,,2024-04-02,D\n",
|
|
"61,54732,9244235.0,,Sale at price 168.90 per share.,ADAMS KATHERINE L,General Counsel,,2024-04-02,D\n",
|
|
"62,113309,,,,ADAMS KATHERINE L,General Counsel,,2024-04-01,D\n",
|
|
"63,196410,,,,COOK TIMOTHY D,Chief Executive Officer,,2024-04-01,D\n",
|
|
"64,113309,,,,O'BRIEN DEIRDRE,Officer,,2024-04-01,D\n",
|
|
"65,113309,,,,WILLIAMS JEFFREY E,Chief Operating Officer,,2024-04-01,I\n",
|
|
"66,113309,,,,MAESTRI LUCA,Chief Financial Officer,,2024-04-01,D\n",
|
|
"67,100000,18094000.0,,Sale at price 180.94 per share.,LEVINSON ARTHUR D,Director,,2024-02-29,D\n",
|
|
"68,1852,,,,LEVINSON ARTHUR D,Director,,2024-02-01,D\n",
|
|
"69,1852,,,,GORSKY ALEX,Director,,2024-02-01,D\n",
|
|
"70,1852,,,,GORE ALBERT A JR,Director,,2024-02-01,D\n",
|
|
"71,1852,,,,LOZANO MONICA C.,Director,,2024-02-01,D\n",
|
|
"72,1852,,,,BELL JAMES A,Director,,2024-02-01,D\n",
|
|
"73,1852,,,,WAGNER SUSAN L,Director,,2024-02-01,D\n",
|
|
"74,1852,,,,JUNG ANDREA,Director,,2024-02-01,D\n",
|
|
"75,1852,,,,SUGAR RONALD D,Director,,2024-02-01,D\n",
|
|
"\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"print(get_yfinance_insider_transactions(ticker=\"AAPL\", curr_date=\"2025-12-02\"))"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 35,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"from tradingagents.dataflows.alpha_vantage import (\n",
|
|
" get_stock as get_alpha_vantage_stock,\n",
|
|
" get_indicator as get_alpha_vantage_indicator,\n",
|
|
" get_fundamentals as get_alpha_vantage_fundamentals,\n",
|
|
" get_balance_sheet as get_alpha_vantage_balance_sheet,\n",
|
|
" get_cashflow as get_alpha_vantage_cashflow,\n",
|
|
" get_income_statement as get_alpha_vantage_income_statement,\n",
|
|
" get_insider_transactions as get_alpha_vantage_insider_transactions,\n",
|
|
" get_news as get_alpha_vantage_news,\n",
|
|
" get_top_gainers_losers as get_alpha_vantage_movers,\n",
|
|
")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 37,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"'{\\n \"data\": [\\n {\\n \"transaction_date\": \"2025-11-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-11-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3752.0\",\\n \"share_price\": \"271.23\"\\n },\\n {\\n \"transaction_date\": \"2025-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1665.0\",\\n \"share_price\": \"247.04\"\\n },\\n {\\n \"transaction_date\": \"2025-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1534.0\",\\n \"share_price\": \"247.82\"\\n },\\n {\\n \"transaction_date\": \"2025-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"245.89\"\\n },\\n {\\n \"transaction_date\": \"2025-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"248.73\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16457.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5816.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5111.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1914.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3619.0\",\\n \"share_price\": \"249.34\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2077.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1898.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1482.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7371.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8062.0\",\\n \"share_price\": \"249.34\"\\n },\\n {\\n \"transaction_date\": \"2025-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5530.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21551.0\",\\n \"share_price\": \"257.54\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"254.83\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8100.0\",\\n \"share_price\": \"255.96\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1740.0\",\\n \"share_price\": \"258.08\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59751.0\",\\n \"share_price\": \"257.57\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"39293.0\",\\n \"share_price\": \"256.62\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22524.0\",\\n \"share_price\": \"255.86\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8395.0\",\\n \"share_price\": \"254.83\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"41273.0\",\\n \"share_price\": \"257.36\"\\n },\\n {\\n \"transaction_date\": \"2025-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13974.0\",\\n \"share_price\": \"256.6\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92403.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KHAN, SABIH\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"49390.0\",\\n \"share_price\": \"255.45\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KHAN, SABIH\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92403.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92403.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"49390.0\",\\n \"share_price\": \"255.45\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92403.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"277206.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"147243.0\",\\n \"share_price\": \"255.45\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"277206.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92403.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45278.0\",\\n \"share_price\": \"255.45\"\\n },\\n {\\n \"transaction_date\": \"2025-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KHAN, SABIH\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92403.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-09-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"48932.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-09-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"146795.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-09-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"48932.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-09-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KHAN, SABIH\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"48932.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-09-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"48932.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-09-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"48932.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-08-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"90000.0\",\\n \"share_price\": \"232.07\"\\n },\\n {\\n \"transaction_date\": \"2025-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"435.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"34821.0\",\\n \"share_price\": \"223.2\"\\n },\\n {\\n \"transaction_date\": \"2025-05-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4486.0\",\\n \"share_price\": \"208.1933\"\\n },\\n {\\n \"transaction_date\": \"2025-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4570.0\",\\n \"share_price\": \"206.0\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5530.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5111.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1482.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1899.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2078.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1914.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2887.0\",\\n \"share_price\": \"202.14\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7373.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16458.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7319.0\",\\n \"share_price\": \"202.14\"\\n },\\n {\\n \"transaction_date\": \"2025-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAREKH, KEVAN\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5817.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6695.0\",\\n \"share_price\": \"221.77\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"221.68\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2480.0\",\\n \"share_price\": \"225.03\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"28774.0\",\\n \"share_price\": \"222.99\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17292.0\",\\n \"share_price\": \"224.34\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9231.0\",\\n \"share_price\": \"222.87\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22343.0\",\\n \"share_price\": \"223.9\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5648.0\",\\n \"share_price\": \"224.62\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62077.0\",\\n \"share_price\": \"223.97\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10590.0\",\\n \"share_price\": \"224.76\"\\n },\\n {\\n \"transaction_date\": \"2025-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15721.0\",\\n \"share_price\": \"223.48\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"74535.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"85080.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"110432.0\",\\n \"share_price\": \"223.19\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"218568.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22159.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"111329.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"39714.0\",\\n \"share_price\": \"223.19\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"74535.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22159.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22159.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"39042.0\",\\n \"share_price\": \"223.19\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"74535.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35713.0\",\\n \"share_price\": \"223.19\"\\n },\\n {\\n \"transaction_date\": \"2025-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22159.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1255.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1113.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AUSTIN, WANDA M\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1255.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1255.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1255.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1255.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1255.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2025-02-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"226.3501\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AUSTIN, WANDA M\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AUSTIN, WANDA M\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2025-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-12-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8384.0\",\\n \"share_price\": \"251.1\"\\n },\\n {\\n \"transaction_date\": \"2024-12-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13925.0\",\\n \"share_price\": \"248.61\"\\n },\\n {\\n \"transaction_date\": \"2024-12-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"34752.0\",\\n \"share_price\": \"249.5\"\\n },\\n {\\n \"transaction_date\": \"2024-12-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"42939.0\",\\n \"share_price\": \"250.58\"\\n },\\n {\\n \"transaction_date\": \"2024-11-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"229.28\"\\n },\\n {\\n \"transaction_date\": \"2024-11-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"228.66\"\\n },\\n {\\n \"transaction_date\": \"2024-11-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4130.0\",\\n \"share_price\": \"228.87\"\\n },\\n {\\n \"transaction_date\": \"2024-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"224.68\"\\n },\\n {\\n \"transaction_date\": \"2024-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2226.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8115.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1898.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2077.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3985.0\",\\n \"share_price\": \"233.85\"\\n },\\n {\\n \"transaction_date\": \"2024-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1914.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59305.0\",\\n \"share_price\": \"226.52\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38170.0\",\\n \"share_price\": \"226.82\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8056.0\",\\n \"share_price\": \"227.22\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5850.0\",\\n \"share_price\": \"223.79\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6454.0\",\\n \"share_price\": \"224.59\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7550.0\",\\n \"share_price\": \"225.87\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2995.0\",\\n \"share_price\": \"227.24\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"51674.0\",\\n \"share_price\": \"226.8\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22328.0\",\\n \"share_price\": \"227.13\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38691.0\",\\n \"share_price\": \"226.72\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7193.0\",\\n \"share_price\": \"226.57\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"61912.0\",\\n \"share_price\": \"224.46\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45140.0\",\\n \"share_price\": \"225.86\"\\n },\\n {\\n \"transaction_date\": \"2024-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"109741.0\",\\n \"share_price\": \"223.75\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"127282.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"127282.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"127282.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"127282.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66263.0\",\\n \"share_price\": \"226.21\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"127282.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"127282.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"477301.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"477301.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"67977.0\",\\n \"share_price\": \"226.21\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"67552.0\",\\n \"share_price\": \"226.21\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"253315.0\",\\n \"share_price\": \"226.21\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"127282.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"127282.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66263.0\",\\n \"share_price\": \"226.21\"\\n },\\n {\\n \"transaction_date\": \"2024-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"11854.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"54876.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43901.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43901.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"32926.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10976.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43901.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"164626.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8706.0\",\\n \"share_price\": \"225.0\"\\n },\\n {\\n \"transaction_date\": \"2024-08-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5178.0\",\\n \"share_price\": \"216.5\"\\n },\\n {\\n \"transaction_date\": \"2024-08-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"207.05\"\\n },\\n {\\n \"transaction_date\": \"2024-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"97600.0\",\\n \"share_price\": \"206.42\"\\n },\\n {\\n \"transaction_date\": \"2024-05-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"191.58\"\\n },\\n {\\n \"transaction_date\": \"2024-05-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4999.0\",\\n \"share_price\": \"190.395\"\\n },\\n {\\n \"transaction_date\": \"2024-05-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1850.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1915.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1899.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2078.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2227.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3120.0\",\\n \"share_price\": \"172.69\"\\n },\\n {\\n \"transaction_date\": \"2024-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8119.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12700.0\",\\n \"share_price\": \"173.19\"\\n },\\n {\\n \"transaction_date\": \"2024-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59162.0\",\\n \"share_price\": \"172.22\"\\n },\\n {\\n \"transaction_date\": \"2024-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12894.0\",\\n \"share_price\": \"175.02\"\\n },\\n {\\n \"transaction_date\": \"2024-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"27600.0\",\\n \"share_price\": \"174.12\"\\n },\\n {\\n \"transaction_date\": \"2024-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"165.0\",\\n \"share_price\": \"169.3\"\\n },\\n {\\n \"transaction_date\": \"2024-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"97062.0\",\\n \"share_price\": \"168.62\"\\n },\\n {\\n \"transaction_date\": \"2024-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"54732.0\",\\n \"share_price\": \"168.91\"\\n },\\n {\\n \"transaction_date\": \"2024-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"54732.0\",\\n \"share_price\": \"168.9\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"54147.0\",\\n \"share_price\": \"170.03\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"99183.0\",\\n \"share_price\": \"170.03\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"85081.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"111329.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"58577.0\",\\n \"share_price\": \"170.03\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"113309.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22689.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"113309.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22689.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22689.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"196410.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"58577.0\",\\n \"share_price\": \"170.03\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"113309.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60115.0\",\\n \"share_price\": \"170.03\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"113309.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22689.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"180.94\"\\n },\\n {\\n \"transaction_date\": \"2024-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AUSTIN, WANDA M\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2024-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-11-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5513.0\",\\n \"share_price\": \"192.0\"\\n },\\n {\\n \"transaction_date\": \"2023-11-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"123448.0\",\\n \"share_price\": \"188.79\"\\n },\\n {\\n \"transaction_date\": \"2023-11-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"123448.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-11-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"123448.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-11-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4806.0\",\\n \"share_price\": \"184.04\"\\n },\\n {\\n \"transaction_date\": \"2023-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2226.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4568.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5272.0\",\\n \"share_price\": \"178.85\"\\n },\\n {\\n \"transaction_date\": \"2023-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2077.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1914.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10785.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19000.0\",\\n \"share_price\": \"178.55\"\\n },\\n {\\n \"transaction_date\": \"2023-10-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12685.0\",\\n \"share_price\": \"178.91\"\\n },\\n {\\n \"transaction_date\": \"2023-10-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"69785.0\",\\n \"share_price\": \"177.0\"\\n },\\n {\\n \"transaction_date\": \"2023-10-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32010.0\",\\n \"share_price\": \"177.89\"\\n },\\n {\\n \"transaction_date\": \"2023-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"99223.0\",\\n \"share_price\": \"172.52\"\\n },\\n {\\n \"transaction_date\": \"2023-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6800.0\",\\n \"share_price\": \"173.24\"\\n },\\n {\\n \"transaction_date\": \"2023-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32886.0\",\\n \"share_price\": \"172.23\"\\n },\\n {\\n \"transaction_date\": \"2023-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3926.0\",\\n \"share_price\": \"172.65\"\\n },\\n {\\n \"transaction_date\": \"2023-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"61610.0\",\\n \"share_price\": \"172.08\"\\n },\\n {\\n \"transaction_date\": \"2023-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25850.0\",\\n \"share_price\": \"171.62\"\\n },\\n {\\n \"transaction_date\": \"2023-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"55664.0\",\\n \"share_price\": \"171.42\"\\n },\\n {\\n \"transaction_date\": \"2023-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"85682.0\",\\n \"share_price\": \"173.18\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"511000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"58408.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"15187.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"511000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"270431.0\",\\n \"share_price\": \"171.21\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"73010.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"219030.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"136268.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"136268.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70732.0\",\\n \"share_price\": \"171.21\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"136268.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"58408.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"136268.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"72573.0\",\\n \"share_price\": \"171.21\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"136268.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66483.0\",\\n \"share_price\": \"171.21\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"136268.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"58408.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"136268.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"136268.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70732.0\",\\n \"share_price\": \"171.21\"\\n },\\n {\\n \"transaction_date\": \"2023-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"58408.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5600.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-08-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15419.0\",\\n \"share_price\": \"178.56\"\\n },\\n {\\n \"transaction_date\": \"2023-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31896.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"31896.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16477.0\",\\n \"share_price\": \"181.99\"\\n },\\n {\\n \"transaction_date\": \"2023-05-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"68642.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-05-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4092.0\",\\n \"share_price\": \"173.26\"\\n },\\n {\\n \"transaction_date\": \"2023-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2227.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1915.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4384.0\",\\n \"share_price\": \"165.21\"\\n },\\n {\\n \"transaction_date\": \"2023-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2078.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4572.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10792.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"69996.0\",\\n \"share_price\": \"165.25\"\\n },\\n {\\n \"transaction_date\": \"2023-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"164.92\"\\n },\\n {\\n \"transaction_date\": \"2023-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"166.62\"\\n },\\n {\\n \"transaction_date\": \"2023-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"77430.0\",\\n \"share_price\": \"166.11\"\\n },\\n {\\n \"transaction_date\": \"2023-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29449.0\",\\n \"share_price\": \"165.62\"\\n },\\n {\\n \"transaction_date\": \"2023-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26623.0\",\\n \"share_price\": \"164.67\"\\n },\\n {\\n \"transaction_date\": \"2023-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2464.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25958.0\",\\n \"share_price\": \"165.87\"\\n },\\n {\\n \"transaction_date\": \"2023-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17664.0\",\\n \"share_price\": \"164.73\"\\n },\\n {\\n \"transaction_date\": \"2023-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33407.0\",\\n \"share_price\": \"164.71\"\\n },\\n {\\n \"transaction_date\": \"2023-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38818.0\",\\n \"share_price\": \"165.81\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"55257.0\",\\n \"share_price\": \"164.9\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"71867.0\",\\n \"share_price\": \"164.9\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"149684.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59064.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"77459.0\",\\n \"share_price\": \"164.9\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"149684.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"111329.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59064.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"79488.0\",\\n \"share_price\": \"164.9\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"149684.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59064.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"111329.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46998.0\",\\n \"share_price\": \"164.9\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29688.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"90620.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-03-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"187730.0\",\\n \"share_price\": \"159.76\"\\n },\\n {\\n \"transaction_date\": \"2023-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1852.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-02-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2023-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-12-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"703.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-12-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2275.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20200.0\",\\n \"share_price\": \"148.72\"\\n },\\n {\\n \"transaction_date\": \"2022-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7200.0\",\\n \"share_price\": \"157.2\"\\n },\\n {\\n \"transaction_date\": \"2022-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14274.0\",\\n \"share_price\": \"154.7\"\\n },\\n {\\n \"transaction_date\": \"2022-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"85147.0\",\\n \"share_price\": \"155.63\"\\n },\\n {\\n \"transaction_date\": \"2022-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"69678.0\",\\n \"share_price\": \"156.46\"\\n },\\n {\\n \"transaction_date\": \"2022-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8053.0\",\\n \"share_price\": \"142.45\"\\n },\\n {\\n \"transaction_date\": \"2022-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2226.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8559.0\",\\n \"share_price\": \"138.38\"\\n },\\n {\\n \"transaction_date\": \"2022-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1914.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16612.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4568.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16612.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4428.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6399.0\",\\n \"share_price\": \"138.38\"\\n },\\n {\\n \"transaction_date\": \"2022-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13136.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"67026.0\",\\n \"share_price\": \"142.83\"\\n },\\n {\\n \"transaction_date\": \"2022-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"65350.0\",\\n \"share_price\": \"142.45\"\\n },\\n {\\n \"transaction_date\": \"2022-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"42393.0\",\\n \"share_price\": \"141.09\"\\n },\\n {\\n \"transaction_date\": \"2022-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66880.0\",\\n \"share_price\": \"142.17\"\\n },\\n {\\n \"transaction_date\": \"2022-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5400.0\",\\n \"share_price\": \"138.44\"\\n },\\n {\\n \"transaction_date\": \"2022-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13199.0\",\\n \"share_price\": \"139.15\"\\n },\\n {\\n \"transaction_date\": \"2022-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13250.0\",\\n \"share_price\": \"142.93\"\\n },\\n {\\n \"transaction_date\": \"2022-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"56271.0\",\\n \"share_price\": \"141.19\"\\n },\\n {\\n \"transaction_date\": \"2022-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"27669.0\",\\n \"share_price\": \"140.34\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"184461.0\",\\n \"share_price\": \"138.2\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"365600.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"189301.0\",\\n \"share_price\": \"138.2\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"365600.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"365600.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"365600.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"365600.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"365600.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"177870.0\",\\n \"share_price\": \"138.2\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"365600.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"189301.0\",\\n \"share_price\": \"138.2\"\\n },\\n {\\n \"transaction_date\": \"2022-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"365600.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-09-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"199429.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-09-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"66477.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-09-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"66477.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-09-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16620.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-09-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"66477.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-09-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"66477.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-09-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"66477.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-08-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30345.0\",\\n \"share_price\": \"175.6\"\\n },\\n {\\n \"transaction_date\": \"2022-08-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66390.0\",\\n \"share_price\": \"174.66\"\\n },\\n {\\n \"transaction_date\": \"2022-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15366.0\",\\n \"share_price\": \"164.86\"\\n },\\n {\\n \"transaction_date\": \"2022-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31896.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"31896.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16530.0\",\\n \"share_price\": \"165.35\"\\n },\\n {\\n \"transaction_date\": \"2022-08-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2928.0\",\\n \"share_price\": \"162.43\"\\n },\\n {\\n \"transaction_date\": \"2022-08-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5568.0\",\\n \"share_price\": \"165.91\"\\n },\\n {\\n \"transaction_date\": \"2022-08-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5700.0\",\\n \"share_price\": \"166.28\"\\n },\\n {\\n \"transaction_date\": \"2022-08-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5031.0\",\\n \"share_price\": \"164.69\"\\n },\\n {\\n \"transaction_date\": \"2022-08-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5073.0\",\\n \"share_price\": \"163.69\"\\n },\\n {\\n \"transaction_date\": \"2022-08-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"161.46\"\\n },\\n {\\n \"transaction_date\": \"2022-05-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1276.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"162.77\"\\n },\\n {\\n \"transaction_date\": \"2022-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2292.0\",\\n \"share_price\": \"165.95\"\\n },\\n {\\n \"transaction_date\": \"2022-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"165.06\"\\n },\\n {\\n \"transaction_date\": \"2022-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1550.0\",\\n \"share_price\": \"163.94\"\\n },\\n {\\n \"transaction_date\": \"2022-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9136.0\",\\n \"share_price\": \"159.94\"\\n },\\n {\\n \"transaction_date\": \"2022-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5316.0\",\\n \"share_price\": \"160.82\"\\n },\\n {\\n \"transaction_date\": \"2022-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4006.0\",\\n \"share_price\": \"161.93\"\\n },\\n {\\n \"transaction_date\": \"2022-04-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3431.0\",\\n \"share_price\": \"165.41\"\\n },\\n {\\n \"transaction_date\": \"2022-04-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4569.0\",\\n \"share_price\": \"164.54\"\\n },\\n {\\n \"transaction_date\": \"2022-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8612.0\",\\n \"share_price\": \"165.29\"\\n },\\n {\\n \"transaction_date\": \"2022-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4432.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4572.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2227.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1915.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16612.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16612.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13146.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5537.0\",\\n \"share_price\": \"165.29\"\\n },\\n {\\n \"transaction_date\": \"2022-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17497.0\",\\n \"share_price\": \"177.49\"\\n },\\n {\\n \"transaction_date\": \"2022-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"42737.0\",\\n \"share_price\": \"178.19\"\\n },\\n {\\n \"transaction_date\": \"2022-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11701.0\",\\n \"share_price\": \"178.18\"\\n },\\n {\\n \"transaction_date\": \"2022-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"63164.0\",\\n \"share_price\": \"177.46\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"84932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"60936.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31738.0\",\\n \"share_price\": \"174.31\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"204932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"99031.0\",\\n \"share_price\": \"174.31\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59064.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60936.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"84932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60936.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"204932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"108197.0\",\\n \"share_price\": \"174.31\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59064.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60936.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62381.0\",\\n \"share_price\": \"174.31\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59064.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60936.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1685.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-02-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14242.0\",\\n \"share_price\": \"175.08\"\\n },\\n {\\n \"transaction_date\": \"2022-02-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6400.0\",\\n \"share_price\": \"174.32\"\\n },\\n {\\n \"transaction_date\": \"2022-02-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2058.0\",\\n \"share_price\": \"173.04\"\\n },\\n {\\n \"transaction_date\": \"2022-02-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"175.78\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"173.29\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1450.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"486.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2022-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"486.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-11-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-11-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9005.0\",\\n \"share_price\": \"150.0\"\\n },\\n {\\n \"transaction_date\": \"2021-11-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORSKY, ALEX\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"486.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21710.0\",\\n \"share_price\": \"148.61\"\\n },\\n {\\n \"transaction_date\": \"2021-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3290.0\",\\n \"share_price\": \"149.11\"\\n },\\n {\\n \"transaction_date\": \"2021-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"165829.0\",\\n \"share_price\": \"148.62\"\\n },\\n {\\n \"transaction_date\": \"2021-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17108.0\",\\n \"share_price\": \"146.32\"\\n },\\n {\\n \"transaction_date\": \"2021-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1139.0\",\\n \"share_price\": \"146.75\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2227.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6368.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"38904.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20657.0\",\\n \"share_price\": \"144.84\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22292.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16612.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17591.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8586.0\",\\n \"share_price\": \"144.84\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4428.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4568.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"165829.0\",\\n \"share_price\": \"138.83\"\\n },\\n {\\n \"transaction_date\": \"2021-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"89437.0\",\\n \"share_price\": \"138.83\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"188563.0\",\\n \"share_price\": \"142.65\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"354392.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"101939.0\",\\n \"share_price\": \"142.65\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"188563.0\",\\n \"share_price\": \"142.65\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"354392.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"191376.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"354392.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"191376.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"354392.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"354392.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"354392.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"188563.0\",\\n \"share_price\": \"142.65\"\\n },\\n {\\n \"transaction_date\": \"2021-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68065.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"255241.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68065.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68065.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"15315.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68065.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"90061.0\",\\n \"share_price\": \"149.97\"\\n },\\n {\\n \"transaction_date\": \"2021-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1820655.0\",\\n \"share_price\": \"148.3\"\\n },\\n {\\n \"transaction_date\": \"2021-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"475724.0\",\\n \"share_price\": \"149.37\"\\n },\\n {\\n \"transaction_date\": \"2021-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5040000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2653560.0\",\\n \"share_price\": \"149.62\"\\n },\\n {\\n \"transaction_date\": \"2021-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5040000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-08-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-08-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14877.0\",\\n \"share_price\": \"145.99\"\\n },\\n {\\n \"transaction_date\": \"2021-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"31896.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31896.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17019.0\",\\n \"share_price\": \"147.06\"\\n },\\n {\\n \"transaction_date\": \"2021-08-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"146.5\"\\n },\\n {\\n \"transaction_date\": \"2021-08-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15600.0\",\\n \"share_price\": \"145.83\"\\n },\\n {\\n \"transaction_date\": \"2021-05-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4010.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87612.0\",\\n \"share_price\": \"132.58\"\\n },\\n {\\n \"transaction_date\": \"2021-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"133.93\"\\n },\\n {\\n \"transaction_date\": \"2021-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4470.0\",\\n \"share_price\": \"133.33\"\\n },\\n {\\n \"transaction_date\": \"2021-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12130.0\",\\n \"share_price\": \"132.57\"\\n },\\n {\\n \"transaction_date\": \"2021-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"133.93\"\\n },\\n {\\n \"transaction_date\": \"2021-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29760.0\",\\n \"share_price\": \"133.34\"\\n },\\n {\\n \"transaction_date\": \"2021-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18216.0\",\\n \"share_price\": \"134.01\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"38908.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2227.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4432.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6372.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7499.0\",\\n \"share_price\": \"134.5\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17603.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16612.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22296.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20692.0\",\\n \"share_price\": \"134.5\"\\n },\\n {\\n \"transaction_date\": \"2021-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4572.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"133867.0\",\\n \"share_price\": \"125.74\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"136276.0\",\\n \"share_price\": \"123.0\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"113348.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"84932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59068.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"59068.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30475.0\",\\n \"share_price\": \"123.0\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"257348.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"84932.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"113348.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"257348.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59068.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59068.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"123481.0\",\\n \"share_price\": \"123.0\"\\n },\\n {\\n \"transaction_date\": \"2021-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2021-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"135.6\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7428.0\",\\n \"share_price\": \"134.56\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4762.0\",\\n \"share_price\": \"133.82\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2902.0\",\\n \"share_price\": \"132.85\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1908.0\",\\n \"share_price\": \"131.79\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"281.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"281.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3416.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2021-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LOZANO, MONICA C\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"281.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-12-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"408.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"57480.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"57480.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30524.0\",\\n \"share_price\": \"119.26\"\\n },\\n {\\n \"transaction_date\": \"2020-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2612.0\",\\n \"share_price\": \"109.22\"\\n },\\n {\\n \"transaction_date\": \"2020-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5747.0\",\\n \"share_price\": \"110.99\"\\n },\\n {\\n \"transaction_date\": \"2020-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8641.0\",\\n \"share_price\": \"110.4\"\\n },\\n {\\n \"transaction_date\": \"2020-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14840.0\",\\n \"share_price\": \"121.34\"\\n },\\n {\\n \"transaction_date\": \"2020-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12452.0\",\\n \"share_price\": \"120.14\"\\n },\\n {\\n \"transaction_date\": \"2020-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18748.0\",\\n \"share_price\": \"119.58\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35332.0\",\\n \"share_price\": \"120.71\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8288.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11528.0\",\\n \"share_price\": \"120.71\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4568.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"66532.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4428.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6368.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"23652.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16612.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22292.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"27628.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"243431.0\",\\n \"share_price\": \"116.89\"\\n },\\n {\\n \"transaction_date\": \"2020-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"28386.0\",\\n \"share_price\": \"114.19\"\\n },\\n {\\n \"transaction_date\": \"2020-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"228957.0\",\\n \"share_price\": \"113.52\"\\n },\\n {\\n \"transaction_date\": \"2020-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"459856.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"519080.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"275649.0\",\\n \"share_price\": \"116.79\"\\n },\\n {\\n \"transaction_date\": \"2020-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"519080.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"519080.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"261737.0\",\\n \"share_price\": \"116.79\"\\n },\\n {\\n \"transaction_date\": \"2020-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"459856.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"227496.0\",\\n \"share_price\": \"116.79\"\\n },\\n {\\n \"transaction_date\": \"2020-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"519080.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-09-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"89064.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-09-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"333987.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-09-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"89064.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-09-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17813.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-09-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"89064.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-09-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"89064.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32447.0\",\\n \"share_price\": \"498.54\"\\n },\\n {\\n \"transaction_date\": \"2020-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"58710.0\",\\n \"share_price\": \"499.42\"\\n },\\n {\\n \"transaction_date\": \"2020-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18014.0\",\\n \"share_price\": \"494.59\"\\n },\\n {\\n \"transaction_date\": \"2020-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7118.0\",\\n \"share_price\": \"493.5\"\\n },\\n {\\n \"transaction_date\": \"2020-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"500.11\"\\n },\\n {\\n \"transaction_date\": \"2020-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"97417.0\",\\n \"share_price\": \"495.53\"\\n },\\n {\\n \"transaction_date\": \"2020-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30814.0\",\\n \"share_price\": \"496.45\"\\n },\\n {\\n \"transaction_date\": \"2020-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19650.0\",\\n \"share_price\": \"497.54\"\\n },\\n {\\n \"transaction_date\": \"2020-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"294840.0\",\\n \"share_price\": \"503.43\"\\n },\\n {\\n \"transaction_date\": \"2020-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-08-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10715.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4491.0\",\\n \"share_price\": \"305.62\"\\n },\\n {\\n \"transaction_date\": \"2020-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9590.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9590.0\",\\n \"share_price\": \"48.9457\"\\n },\\n {\\n \"transaction_date\": \"2020-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2851.0\",\\n \"share_price\": \"284.52\"\\n },\\n {\\n \"transaction_date\": \"2020-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2278.0\",\\n \"share_price\": \"283.82\"\\n },\\n {\\n \"transaction_date\": \"2020-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1847.0\",\\n \"share_price\": \"285.66\"\\n },\\n {\\n \"transaction_date\": \"2020-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2161.0\",\\n \"share_price\": \"286.82\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4153.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16634.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7497.0\",\\n \"share_price\": \"284.43\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1593.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6907.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5574.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5916.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2345.0\",\\n \"share_price\": \"284.43\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2072.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1143.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"269.44\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"268.41\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"267.11\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7200.0\",\\n \"share_price\": \"266.26\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4395.0\",\\n \"share_price\": \"262.09\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8579.0\",\\n \"share_price\": \"265.32\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4500.0\",\\n \"share_price\": \"264.08\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3203.0\",\\n \"share_price\": \"260.1\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3185.0\",\\n \"share_price\": \"260.97\"\\n },\\n {\\n \"transaction_date\": \"2020-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"263.04\"\\n },\\n {\\n \"transaction_date\": \"2020-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2377.0\",\\n \"share_price\": \"244.36\"\\n },\\n {\\n \"transaction_date\": \"2020-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3039.0\",\\n \"share_price\": \"238.96\"\\n },\\n {\\n \"transaction_date\": \"2020-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"845.0\",\\n \"share_price\": \"244.98\"\\n },\\n {\\n \"transaction_date\": \"2020-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5266.0\",\\n \"share_price\": \"240.2\"\\n },\\n {\\n \"transaction_date\": \"2020-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13783.0\",\\n \"share_price\": \"242.3\"\\n },\\n {\\n \"transaction_date\": \"2020-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7454.0\",\\n \"share_price\": \"241.24\"\\n },\\n {\\n \"transaction_date\": \"2020-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4449.0\",\\n \"share_price\": \"243.03\"\\n },\\n {\\n \"transaction_date\": \"2020-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3849.0\",\\n \"share_price\": \"238.03\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85678.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36107.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"28338.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21233.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"28338.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21233.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85678.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"44616.0\",\\n \"share_price\": \"240.91\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36107.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"44616.0\",\\n \"share_price\": \"240.91\"\\n },\\n {\\n \"transaction_date\": \"2020-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"854.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"854.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"854.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"854.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"854.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"854.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-02-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"304.11\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2020-01-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32889.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2020-01-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"32889.0\",\\n \"share_price\": \"28.8571\"\\n },\\n {\\n \"transaction_date\": \"2019-12-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6880.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14370.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14370.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7371.0\",\\n \"share_price\": \"264.47\"\\n },\\n {\\n \"transaction_date\": \"2019-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37394.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37394.0\",\\n \"share_price\": \"257.79\"\\n },\\n {\\n \"transaction_date\": \"2019-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"37394.0\",\\n \"share_price\": \"28.8571\"\\n },\\n {\\n \"transaction_date\": \"2019-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3932.0\",\\n \"share_price\": \"233.26\"\\n },\\n {\\n \"transaction_date\": \"2019-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12459.0\",\\n \"share_price\": \"234.04\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"23967.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2072.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3320.0\",\\n \"share_price\": \"235.32\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6915.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4153.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5573.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7334.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11508.0\",\\n \"share_price\": \"235.32\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1592.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2144.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6907.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1107.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19949.0\",\\n \"share_price\": \"227.59\"\\n },\\n {\\n \"transaction_date\": \"2019-10-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"226.58\"\\n },\\n {\\n \"transaction_date\": \"2019-10-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21100.0\",\\n \"share_price\": \"228.66\"\\n },\\n {\\n \"transaction_date\": \"2019-10-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17010.0\",\\n \"share_price\": \"229.34\"\\n },\\n {\\n \"transaction_date\": \"2019-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24601.0\",\\n \"share_price\": \"218.62\"\\n },\\n {\\n \"transaction_date\": \"2019-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"42953.0\",\\n \"share_price\": \"219.28\"\\n },\\n {\\n \"transaction_date\": \"2019-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"61754.0\",\\n \"share_price\": \"224.59\"\\n },\\n {\\n \"transaction_date\": \"2019-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"129308.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"129308.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"129308.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"67649.0\",\\n \"share_price\": \"224.59\"\\n },\\n {\\n \"transaction_date\": \"2019-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"129308.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9140.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"45700.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"45700.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"45700.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-09-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"45700.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"132113.0\",\\n \"share_price\": \"206.55\"\\n },\\n {\\n \"transaction_date\": \"2019-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"129555.0\",\\n \"share_price\": \"205.75\"\\n },\\n {\\n \"transaction_date\": \"2019-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3492.0\",\\n \"share_price\": \"207.13\"\\n },\\n {\\n \"transaction_date\": \"2019-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"294840.0\",\\n \"share_price\": \"202.64\"\\n },\\n {\\n \"transaction_date\": \"2019-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-08-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23700.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-08-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-08-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"201.69\"\\n },\\n {\\n \"transaction_date\": \"2019-08-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"23.8257\"\\n },\\n {\\n \"transaction_date\": \"2019-08-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1177.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4376.0\",\\n \"share_price\": \"217.4669\"\\n },\\n {\\n \"transaction_date\": \"2019-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"23.8257\"\\n },\\n {\\n \"transaction_date\": \"2019-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"214.02\"\\n },\\n {\\n \"transaction_date\": \"2019-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"210.86\"\\n },\\n {\\n \"transaction_date\": \"2019-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"23.8257\"\\n },\\n {\\n \"transaction_date\": \"2019-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8601.0\",\\n \"share_price\": \"210.98\"\\n },\\n {\\n \"transaction_date\": \"2019-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13433.0\",\\n \"share_price\": \"208.99\"\\n },\\n {\\n \"transaction_date\": \"2019-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1550.0\",\\n \"share_price\": \"212.46\"\\n },\\n {\\n \"transaction_date\": \"2019-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18256.0\",\\n \"share_price\": \"209.71\"\\n },\\n {\\n \"transaction_date\": \"2019-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14571.0\",\\n \"share_price\": \"211.83\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6917.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"23970.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4154.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10781.0\",\\n \"share_price\": \"199.23\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7334.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6908.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5574.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1593.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2072.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2144.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2587.0\",\\n \"share_price\": \"199.23\"\\n },\\n {\\n \"transaction_date\": \"2019-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"51138.0\",\\n \"share_price\": \"196.61\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"105400.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"54262.0\",\\n \"share_price\": \"191.24\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"28338.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40954.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"48989.0\",\\n \"share_price\": \"191.24\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40954.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"105400.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"28338.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1429.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-02-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"471.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-02-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"O\\'BRIEN, DEIRDRE\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"23922.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"167.71\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2019-01-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"14.5171\"\\n },\\n {\\n \"transaction_date\": \"2019-01-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"14.5171\"\\n },\\n {\\n \"transaction_date\": \"2018-11-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3408.0\",\\n \"share_price\": \"190.0\"\\n },\\n {\\n \"transaction_date\": \"2018-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14371.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14371.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7019.0\",\\n \"share_price\": \"192.23\"\\n },\\n {\\n \"transaction_date\": \"2018-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6800.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3281.0\",\\n \"share_price\": \"217.36\"\\n },\\n {\\n \"transaction_date\": \"2018-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"992.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2144.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2072.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1592.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14194.0\",\\n \"share_price\": \"227.96\"\\n },\\n {\\n \"transaction_date\": \"2018-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35904.0\",\\n \"share_price\": \"227.69\"\\n },\\n {\\n \"transaction_date\": \"2018-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31747.0\",\\n \"share_price\": \"228.28\"\\n },\\n {\\n \"transaction_date\": \"2018-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25509.0\",\\n \"share_price\": \"229.6\"\\n },\\n {\\n \"transaction_date\": \"2018-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5485.0\",\\n \"share_price\": \"230.22\"\\n },\\n {\\n \"transaction_date\": \"2018-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"231.48\"\\n },\\n {\\n \"transaction_date\": \"2018-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"230.78\"\\n },\\n {\\n \"transaction_date\": \"2018-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16610.0\",\\n \"share_price\": \"232.7\"\\n },\\n {\\n \"transaction_date\": \"2018-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"232.66\"\\n },\\n {\\n \"transaction_date\": \"2018-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45388.0\",\\n \"share_price\": \"232.19\"\\n },\\n {\\n \"transaction_date\": \"2018-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"130528.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66334.0\",\\n \"share_price\": \"227.26\"\\n },\\n {\\n \"transaction_date\": \"2018-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"130528.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"130528.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66334.0\",\\n \"share_price\": \"227.26\"\\n },\\n {\\n \"transaction_date\": \"2018-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"68530.0\",\\n \"share_price\": \"227.26\"\\n },\\n {\\n \"transaction_date\": \"2018-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"130528.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"130528.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"130528.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-09-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"44299.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-09-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"44299.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-09-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"44299.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-09-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, GC and Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"44299.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-09-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8860.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"56324.0\",\\n \"share_price\": \"216.96\"\\n },\\n {\\n \"transaction_date\": \"2018-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"190746.0\",\\n \"share_price\": \"217.96\"\\n },\\n {\\n \"transaction_date\": \"2018-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18090.0\",\\n \"share_price\": \"218.54\"\\n },\\n {\\n \"transaction_date\": \"2018-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"294840.0\",\\n \"share_price\": \"216.16\"\\n },\\n {\\n \"transaction_date\": \"2018-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-08-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23215.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-08-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5523.0\",\\n \"share_price\": \"214.5\"\\n },\\n {\\n \"transaction_date\": \"2018-08-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"215.5\"\\n },\\n {\\n \"transaction_date\": \"2018-08-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3617.0\",\\n \"share_price\": \"215.0\"\\n },\\n {\\n \"transaction_date\": \"2018-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"320.0\",\\n \"share_price\": \"210.24\"\\n },\\n {\\n \"transaction_date\": \"2018-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-08-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"47796.0\",\\n \"share_price\": \"207.5\"\\n },\\n {\\n \"transaction_date\": \"2018-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"205.29\"\\n },\\n {\\n \"transaction_date\": \"2018-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"206.01\"\\n },\\n {\\n \"transaction_date\": \"2018-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12252.0\",\\n \"share_price\": \"207.13\"\\n },\\n {\\n \"transaction_date\": \"2018-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"207.72\"\\n },\\n {\\n \"transaction_date\": \"2018-08-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"25.6171\"\\n },\\n {\\n \"transaction_date\": \"2018-08-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-08-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"206.96\"\\n },\\n {\\n \"transaction_date\": \"2018-08-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-08-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"206.58\"\\n },\\n {\\n \"transaction_date\": \"2018-08-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"25.6171\"\\n },\\n {\\n \"transaction_date\": \"2018-07-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14131.0\",\\n \"share_price\": \"190.14\"\\n },\\n {\\n \"transaction_date\": \"2018-07-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"190.53\"\\n },\\n {\\n \"transaction_date\": \"2018-06-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6568.0\",\\n \"share_price\": \"188.81\"\\n },\\n {\\n \"transaction_date\": \"2018-06-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6564.0\",\\n \"share_price\": \"190.8\"\\n },\\n {\\n \"transaction_date\": \"2018-06-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13132.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-06-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13132.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-06-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8330.0\",\\n \"share_price\": \"191.3\"\\n },\\n {\\n \"transaction_date\": \"2018-06-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"191.96\"\\n },\\n {\\n \"transaction_date\": \"2018-06-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7223.0\",\\n \"share_price\": \"190.52\"\\n },\\n {\\n \"transaction_date\": \"2018-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3391.0\",\\n \"share_price\": \"189.86\"\\n },\\n {\\n \"transaction_date\": \"2018-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1278.0\",\\n \"share_price\": \"188.82\"\\n },\\n {\\n \"transaction_date\": \"2018-05-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"188.01\"\\n },\\n {\\n \"transaction_date\": \"2018-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4781.0\",\\n \"share_price\": \"187.9\"\\n },\\n {\\n \"transaction_date\": \"2018-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9550.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9550.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-05-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14976.0\",\\n \"share_price\": \"187.74\"\\n },\\n {\\n \"transaction_date\": \"2018-05-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7100.0\",\\n \"share_price\": \"187.95\"\\n },\\n {\\n \"transaction_date\": \"2018-05-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"188.68\"\\n },\\n {\\n \"transaction_date\": \"2018-05-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8472.0\",\\n \"share_price\": \"187.15\"\\n },\\n {\\n \"transaction_date\": \"2018-05-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4867.0\",\\n \"share_price\": \"187.0\"\\n },\\n {\\n \"transaction_date\": \"2018-05-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, General Counsel\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6356.0\",\\n \"share_price\": \"188.59\"\\n },\\n {\\n \"transaction_date\": \"2018-05-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, General Counsel\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14371.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-05-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, General Counsel\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14371.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-05-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"25.6171\"\\n },\\n {\\n \"transaction_date\": \"2018-05-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-05-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"185.99\"\\n },\\n {\\n \"transaction_date\": \"2018-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"186.0\"\\n },\\n {\\n \"transaction_date\": \"2018-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2514.0\",\\n \"share_price\": \"184.52\"\\n },\\n {\\n \"transaction_date\": \"2018-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12939.0\",\\n \"share_price\": \"185.29\"\\n },\\n {\\n \"transaction_date\": \"2018-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13228.0\",\\n \"share_price\": \"178.17\"\\n },\\n {\\n \"transaction_date\": \"2018-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"175.68\"\\n },\\n {\\n \"transaction_date\": \"2018-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11395.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9307.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1593.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2144.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"993.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2568.0\",\\n \"share_price\": \"174.73\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6803.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11284.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8951.0\",\\n \"share_price\": \"174.73\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20591.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2073.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"174.9\"\\n },\\n {\\n \"transaction_date\": \"2018-04-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38022.0\",\\n \"share_price\": \"174.65\"\\n },\\n {\\n \"transaction_date\": \"2018-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3900.0\",\\n \"share_price\": \"170.38\"\\n },\\n {\\n \"transaction_date\": \"2018-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5900.0\",\\n \"share_price\": \"169.35\"\\n },\\n {\\n \"transaction_date\": \"2018-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"168.29\"\\n },\\n {\\n \"transaction_date\": \"2018-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"167.34\"\\n },\\n {\\n \"transaction_date\": \"2018-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2375.0\",\\n \"share_price\": \"171.35\"\\n },\\n {\\n \"transaction_date\": \"2018-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"166.31\"\\n },\\n {\\n \"transaction_date\": \"2018-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23001.0\",\\n \"share_price\": \"165.52\"\\n },\\n {\\n \"transaction_date\": \"2018-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14965.0\",\\n \"share_price\": \"167.36\"\\n },\\n {\\n \"transaction_date\": \"2018-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31525.0\",\\n \"share_price\": \"166.63\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"77062.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"39248.0\",\\n \"share_price\": \"167.78\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40954.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"130117.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66613.0\",\\n \"share_price\": \"167.78\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"63670.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63670.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40954.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"77062.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38834.0\",\\n \"share_price\": \"167.78\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40954.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40954.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"130117.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"67507.0\",\\n \"share_price\": \"167.78\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"130117.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60626.0\",\\n \"share_price\": \"167.78\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"69491.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"69491.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40954.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"130117.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60626.0\",\\n \"share_price\": \"167.78\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40954.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36108.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"77062.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37940.0\",\\n \"share_price\": \"167.78\"\\n },\\n {\\n \"transaction_date\": \"2018-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40954.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"229.0\",\\n \"share_price\": \"172.99\"\\n },\\n {\\n \"transaction_date\": \"2018-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-02-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-02-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-02-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-02-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-02-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-02-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1521.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"18.5243\"\\n },\\n {\\n \"transaction_date\": \"2018-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"18.5243\"\\n },\\n {\\n \"transaction_date\": \"2018-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2018-01-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1902.0\",\\n \"share_price\": \"174.02\"\\n },\\n {\\n \"transaction_date\": \"2018-01-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13739.0\",\\n \"share_price\": \"174.89\"\\n },\\n {\\n \"transaction_date\": \"2017-12-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"160.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-12-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"480.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-12-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13941.0\",\\n \"share_price\": \"169.63\"\\n },\\n {\\n \"transaction_date\": \"2017-12-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"170.19\"\\n },\\n {\\n \"transaction_date\": \"2017-11-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31366.0\",\\n \"share_price\": \"171.87\"\\n },\\n {\\n \"transaction_date\": \"2017-11-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33995.0\",\\n \"share_price\": \"171.35\"\\n },\\n {\\n \"transaction_date\": \"2017-11-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4608.0\",\\n \"share_price\": \"175.04\"\\n },\\n {\\n \"transaction_date\": \"2017-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5760.0\",\\n \"share_price\": \"174.4\"\\n },\\n {\\n \"transaction_date\": \"2017-11-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7241.0\",\\n \"share_price\": \"171.85\"\\n },\\n {\\n \"transaction_date\": \"2017-11-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8400.0\",\\n \"share_price\": \"172.79\"\\n },\\n {\\n \"transaction_date\": \"2017-11-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ADAMS, KATHERINE L.\",\\n \"executive_title\": \"SVP, General Counsel\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"57482.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63699.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63699.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63699.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"993.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63699.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"34039.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17077.0\",\\n \"share_price\": \"156.99\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"940.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12740.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63699.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2072.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11284.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9307.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13448.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63699.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6149.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63699.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3122.0\",\\n \"share_price\": \"156.99\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2144.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6815.0\",\\n \"share_price\": \"156.99\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63699.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4800.0\",\\n \"share_price\": \"155.23\"\\n },\\n {\\n \"transaction_date\": \"2017-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15642.0\",\\n \"share_price\": \"155.01\"\\n },\\n {\\n \"transaction_date\": \"2017-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8588.0\",\\n \"share_price\": \"154.77\"\\n },\\n {\\n \"transaction_date\": \"2017-10-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"153.41\"\\n },\\n {\\n \"transaction_date\": \"2017-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"154.62\"\\n },\\n {\\n \"transaction_date\": \"2017-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"56808.0\",\\n \"share_price\": \"154.7\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64885.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64885.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"68686.0\",\\n \"share_price\": \"154.12\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62929.0\",\\n \"share_price\": \"154.12\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"68686.0\",\\n \"share_price\": \"154.12\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"56808.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"56808.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62929.0\",\\n \"share_price\": \"154.12\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"68686.0\",\\n \"share_price\": \"154.12\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62929.0\",\\n \"share_price\": \"154.12\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64885.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64885.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64885.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64885.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64885.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64885.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62929.0\",\\n \"share_price\": \"154.12\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62565.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"62565.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"68686.0\",\\n \"share_price\": \"154.12\"\\n },\\n {\\n \"transaction_date\": \"2017-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125494.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-08-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"110592.0\",\\n \"share_price\": \"161.43\"\\n },\\n {\\n \"transaction_date\": \"2017-08-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5892.0\",\\n \"share_price\": \"161.0\"\\n },\\n {\\n \"transaction_date\": \"2017-08-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23304.0\",\\n \"share_price\": \"160.51\"\\n },\\n {\\n \"transaction_date\": \"2017-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125321.0\",\\n \"share_price\": \"159.96\"\\n },\\n {\\n \"transaction_date\": \"2017-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9406.0\",\\n \"share_price\": \"160.45\"\\n },\\n {\\n \"transaction_date\": \"2017-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"291377.0\",\\n \"share_price\": \"159.27\"\\n },\\n {\\n \"transaction_date\": \"2017-08-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6209.0\",\\n \"share_price\": \"161.96\"\\n },\\n {\\n \"transaction_date\": \"2017-08-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10469.0\",\\n \"share_price\": \"162.2\"\\n },\\n {\\n \"transaction_date\": \"2017-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"340.0\",\\n \"share_price\": \"161.6\"\\n },\\n {\\n \"transaction_date\": \"2017-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-08-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"63163.0\",\\n \"share_price\": \"158.07\"\\n },\\n {\\n \"transaction_date\": \"2017-08-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2730.0\",\\n \"share_price\": \"158.8\"\\n },\\n {\\n \"transaction_date\": \"2017-08-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"28895.0\",\\n \"share_price\": \"158.07\"\\n },\\n {\\n \"transaction_date\": \"2017-08-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"17.7186\"\\n },\\n {\\n \"transaction_date\": \"2017-08-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"157.58\"\\n },\\n {\\n \"transaction_date\": \"2017-08-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-07-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11949.0\",\\n \"share_price\": \"142.86\"\\n },\\n {\\n \"transaction_date\": \"2017-06-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6559.0\",\\n \"share_price\": \"145.16\"\\n },\\n {\\n \"transaction_date\": \"2017-06-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13139.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-06-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13139.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"155.73\"\\n },\\n {\\n \"transaction_date\": \"2017-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10849.0\",\\n \"share_price\": \"155.28\"\\n },\\n {\\n \"transaction_date\": \"2017-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"154.13\"\\n },\\n {\\n \"transaction_date\": \"2017-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2757.0\",\\n \"share_price\": \"155.11\"\\n },\\n {\\n \"transaction_date\": \"2017-05-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4572.0\",\\n \"share_price\": \"153.83\"\\n },\\n {\\n \"transaction_date\": \"2017-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9550.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4793.0\",\\n \"share_price\": \"153.61\"\\n },\\n {\\n \"transaction_date\": \"2017-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9550.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5447.0\",\\n \"share_price\": \"154.07\"\\n },\\n {\\n \"transaction_date\": \"2017-05-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24000.0\",\\n \"share_price\": \"152.95\"\\n },\\n {\\n \"transaction_date\": \"2017-05-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40500.0\",\\n \"share_price\": \"154.01\"\\n },\\n {\\n \"transaction_date\": \"2017-05-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"153.2\"\\n },\\n {\\n \"transaction_date\": \"2017-05-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45000.0\",\\n \"share_price\": \"153.78\"\\n },\\n {\\n \"transaction_date\": \"2017-05-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"155.76\"\\n },\\n {\\n \"transaction_date\": \"2017-05-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11849.0\",\\n \"share_price\": \"155.27\"\\n },\\n {\\n \"transaction_date\": \"2017-05-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"377.0\",\\n \"share_price\": \"153.63\"\\n },\\n {\\n \"transaction_date\": \"2017-05-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"17.7186\"\\n },\\n {\\n \"transaction_date\": \"2017-05-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"153.88\"\\n },\\n {\\n \"transaction_date\": \"2017-05-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-05-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21180.0\",\\n \"share_price\": \"154.17\"\\n },\\n {\\n \"transaction_date\": \"2017-05-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3820.0\",\\n \"share_price\": \"154.66\"\\n },\\n {\\n \"transaction_date\": \"2017-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"150.21\"\\n },\\n {\\n \"transaction_date\": \"2017-05-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7664.0\",\\n \"share_price\": \"147.86\"\\n },\\n {\\n \"transaction_date\": \"2017-05-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17336.0\",\\n \"share_price\": \"147.3\"\\n },\\n {\\n \"transaction_date\": \"2017-05-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"67500.0\",\\n \"share_price\": \"148.76\"\\n },\\n {\\n \"transaction_date\": \"2017-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24000.0\",\\n \"share_price\": \"146.24\"\\n },\\n {\\n \"transaction_date\": \"2017-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"146.93\"\\n },\\n {\\n \"transaction_date\": \"2017-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"78110.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"80458.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"79514.0\",\\n \"share_price\": \"146.58\"\\n },\\n {\\n \"transaction_date\": \"2017-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"158568.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"708.0\",\\n \"share_price\": \"142.77\"\\n },\\n {\\n \"transaction_date\": \"2017-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"142.19\"\\n },\\n {\\n \"transaction_date\": \"2017-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4300.0\",\\n \"share_price\": \"141.56\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"34046.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13455.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16113.0\",\\n \"share_price\": \"141.05\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2073.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"993.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"942.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2242.0\",\\n \"share_price\": \"141.05\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2144.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6152.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"141.05\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11284.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9307.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11949.0\",\\n \"share_price\": \"143.98\"\\n },\\n {\\n \"transaction_date\": \"2017-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6574.0\",\\n \"share_price\": \"144.63\"\\n },\\n {\\n \"transaction_date\": \"2017-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13733.0\",\\n \"share_price\": \"145.25\"\\n },\\n {\\n \"transaction_date\": \"2017-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"47796.0\",\\n \"share_price\": \"143.32\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20648.0\",\\n \"share_price\": \"143.66\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46214.0\",\\n \"share_price\": \"143.66\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"94010.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46214.0\",\\n \"share_price\": \"143.66\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"94010.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46214.0\",\\n \"share_price\": \"143.66\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46214.0\",\\n \"share_price\": \"143.66\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"94010.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46214.0\",\\n \"share_price\": \"143.66\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"48032.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"48032.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"94010.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19632.0\",\\n \"share_price\": \"143.66\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"94010.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"47796.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"47796.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"94010.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46214.0\",\\n \"share_price\": \"143.66\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40955.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17897.0\",\\n \"share_price\": \"140.18\"\\n },\\n {\\n \"transaction_date\": \"2017-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33328.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33328.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15431.0\",\\n \"share_price\": \"139.78\"\\n },\\n {\\n \"transaction_date\": \"2017-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6207.0\",\\n \"share_price\": \"137.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"215437.0\",\\n \"share_price\": \"136.72\"\\n },\\n {\\n \"transaction_date\": \"2017-02-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"136.245\"\\n },\\n {\\n \"transaction_date\": \"2017-02-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"135.5\"\\n },\\n {\\n \"transaction_date\": \"2017-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70627.0\",\\n \"share_price\": \"135.3\"\\n },\\n {\\n \"transaction_date\": \"2017-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"259.0\",\\n \"share_price\": \"135.51\"\\n },\\n {\\n \"transaction_date\": \"2017-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5652.0\",\\n \"share_price\": \"131.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3357.0\",\\n \"share_price\": \"130.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7529.0\",\\n \"share_price\": \"128.88\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2649.0\",\\n \"share_price\": \"128.05\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"129.12\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"67800.0\",\\n \"share_price\": \"128.32\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"13.0186\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"128.05\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8571.0\",\\n \"share_price\": \"127.99\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"25.72\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"127.99\"\\n },\\n {\\n \"transaction_date\": \"2017-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"128.43\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"127.1\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"130.0\"\\n },\\n {\\n \"transaction_date\": \"2017-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2017-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"121.03\"\\n },\\n {\\n \"transaction_date\": \"2017-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.93\"\\n },\\n {\\n \"transaction_date\": \"2017-01-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"122.14\"\\n },\\n {\\n \"transaction_date\": \"2017-01-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"121.7\"\\n },\\n {\\n \"transaction_date\": \"2017-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.28\"\\n },\\n {\\n \"transaction_date\": \"2017-01-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.0\"\\n },\\n {\\n \"transaction_date\": \"2017-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.0\"\\n },\\n {\\n \"transaction_date\": \"2017-01-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.41\"\\n },\\n {\\n \"transaction_date\": \"2017-01-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.0\"\\n },\\n {\\n \"transaction_date\": \"2017-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10942.0\",\\n \"share_price\": \"119.99\"\\n },\\n {\\n \"transaction_date\": \"2017-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.0\"\\n },\\n {\\n \"transaction_date\": \"2017-01-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.0\"\\n },\\n {\\n \"transaction_date\": \"2017-01-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4010.0\",\\n \"share_price\": \"117.88\"\\n },\\n {\\n \"transaction_date\": \"2016-12-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"117.83\"\\n },\\n {\\n \"transaction_date\": \"2016-12-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"117.66\"\\n },\\n {\\n \"transaction_date\": \"2016-12-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"116.55\"\\n },\\n {\\n \"transaction_date\": \"2016-12-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10342.0\",\\n \"share_price\": \"116.04\"\\n },\\n {\\n \"transaction_date\": \"2016-12-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17303.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-12-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4423.0\",\\n \"share_price\": \"113.92\"\\n },\\n {\\n \"transaction_date\": \"2016-12-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"114.3\"\\n },\\n {\\n \"transaction_date\": \"2016-11-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4401.0\",\\n \"share_price\": \"111.0\"\\n },\\n {\\n \"transaction_date\": \"2016-11-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3689.0\",\\n \"share_price\": \"110.0\"\\n },\\n {\\n \"transaction_date\": \"2016-11-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16950.0\",\\n \"share_price\": \"110.03\"\\n },\\n {\\n \"transaction_date\": \"2016-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22723.0\",\\n \"share_price\": \"110.09\"\\n },\\n {\\n \"transaction_date\": \"2016-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10600.0\",\\n \"share_price\": \"110.9\"\\n },\\n {\\n \"transaction_date\": \"2016-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"335000.0\",\\n \"share_price\": \"111.86\"\\n },\\n {\\n \"transaction_date\": \"2016-10-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26624.0\",\\n \"share_price\": \"114.88\"\\n },\\n {\\n \"transaction_date\": \"2016-10-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6700.0\",\\n \"share_price\": \"115.26\"\\n },\\n {\\n \"transaction_date\": \"2016-10-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43769.0\",\\n \"share_price\": \"115.07\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13455.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6248.0\",\\n \"share_price\": \"117.63\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4798.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"719.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8688.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21447.0\",\\n \"share_price\": \"117.63\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"42734.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2137.0\",\\n \"share_price\": \"117.63\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11284.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9307.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2144.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"993.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"942.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64654.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64654.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64654.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64654.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85013.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85013.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85013.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64654.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85013.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64654.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85013.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64654.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64654.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85013.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64654.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85013.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85013.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16578.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"85013.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1425.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"475.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43769.0\",\\n \"share_price\": \"112.59\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43769.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43809.0\",\\n \"share_price\": \"113.05\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10694.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5371.0\",\\n \"share_price\": \"113.05\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10694.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43809.0\",\\n \"share_price\": \"113.05\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43809.0\",\\n \"share_price\": \"113.05\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43769.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43769.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43809.0\",\\n \"share_price\": \"113.05\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43809.0\",\\n \"share_price\": \"113.05\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"87578.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43809.0\",\\n \"share_price\": \"113.05\"\\n },\\n {\\n \"transaction_date\": \"2016-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43769.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20100.0\",\\n \"share_price\": \"113.0\"\\n },\\n {\\n \"transaction_date\": \"2016-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"525000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"268695.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"268695.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"256305.0\",\\n \"share_price\": \"113.55\"\\n },\\n {\\n \"transaction_date\": \"2016-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"525000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2281.0\",\\n \"share_price\": \"113.55\"\\n },\\n {\\n \"transaction_date\": \"2016-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16379.0\",\\n \"share_price\": \"107.73\"\\n },\\n {\\n \"transaction_date\": \"2016-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33329.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33329.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"49883.0\",\\n \"share_price\": \"106.19\"\\n },\\n {\\n \"transaction_date\": \"2016-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"110000.0\",\\n \"share_price\": \"105.95\"\\n },\\n {\\n \"transaction_date\": \"2016-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"49996.0\",\\n \"share_price\": \"105.95\"\\n },\\n {\\n \"transaction_date\": \"2016-08-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"106700.0\",\\n \"share_price\": \"106.82\"\\n },\\n {\\n \"transaction_date\": \"2016-08-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"107.37\"\\n },\\n {\\n \"transaction_date\": \"2016-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23700.0\",\\n \"share_price\": \"107.69\"\\n },\\n {\\n \"transaction_date\": \"2016-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"86300.0\",\\n \"share_price\": \"107.07\"\\n },\\n {\\n \"transaction_date\": \"2016-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16193.0\",\\n \"share_price\": \"107.73\"\\n },\\n {\\n \"transaction_date\": \"2016-08-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"207807.0\",\\n \"share_price\": \"107.21\"\\n },\\n {\\n \"transaction_date\": \"2016-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1260000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1260000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"656117.0\",\\n \"share_price\": \"108.03\"\\n },\\n {\\n \"transaction_date\": \"2016-08-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"85473.0\",\\n \"share_price\": \"108.85\"\\n },\\n {\\n \"transaction_date\": \"2016-08-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-08-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"85473.0\",\\n \"share_price\": \"108.85\"\\n },\\n {\\n \"transaction_date\": \"2016-08-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-08-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-08-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-08-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11021.0\",\\n \"share_price\": \"108.93\"\\n },\\n {\\n \"transaction_date\": \"2016-08-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"90153.0\",\\n \"share_price\": \"109.15\"\\n },\\n {\\n \"transaction_date\": \"2016-08-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24000.0\",\\n \"share_price\": \"110.11\"\\n },\\n {\\n \"transaction_date\": \"2016-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4327.0\",\\n \"share_price\": \"109.0\"\\n },\\n {\\n \"transaction_date\": \"2016-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"238.0\",\\n \"share_price\": \"109.48\"\\n },\\n {\\n \"transaction_date\": \"2016-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-08-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5500.0\",\\n \"share_price\": \"108.0\"\\n },\\n {\\n \"transaction_date\": \"2016-08-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"108.68\"\\n },\\n {\\n \"transaction_date\": \"2016-08-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-08-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"9.13\"\\n },\\n {\\n \"transaction_date\": \"2016-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23305.0\",\\n \"share_price\": \"107.49\"\\n },\\n {\\n \"transaction_date\": \"2016-08-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9829.0\",\\n \"share_price\": \"104.87\"\\n },\\n {\\n \"transaction_date\": \"2016-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10797.0\",\\n \"share_price\": \"100.0\"\\n },\\n {\\n \"transaction_date\": \"2016-07-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"100.0\"\\n },\\n {\\n \"transaction_date\": \"2016-07-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"103.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-06-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"65681.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-06-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"65681.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-06-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32813.0\",\\n \"share_price\": \"97.46\"\\n },\\n {\\n \"transaction_date\": \"2016-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"91.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"91.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-05-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"100.0\"\\n },\\n {\\n \"transaction_date\": \"2016-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9551.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4799.0\",\\n \"share_price\": \"100.35\"\\n },\\n {\\n \"transaction_date\": \"2016-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9551.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-05-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"100.0\"\\n },\\n {\\n \"transaction_date\": \"2016-05-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"99.44\"\\n },\\n {\\n \"transaction_date\": \"2016-05-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40755.0\",\\n \"share_price\": \"100.0\"\\n },\\n {\\n \"transaction_date\": \"2016-05-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"99.75\"\\n },\\n {\\n \"transaction_date\": \"2016-05-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"100.0\"\\n },\\n {\\n \"transaction_date\": \"2016-05-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"103300.0\",\\n \"share_price\": \"96.78\"\\n },\\n {\\n \"transaction_date\": \"2016-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75124.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"78111.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"153235.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75306.0\",\\n \"share_price\": \"93.74\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"42738.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"993.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4804.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8692.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"942.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13455.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2144.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20370.0\",\\n \"share_price\": \"109.85\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9307.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SROUJI, JOHNY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11284.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6289.0\",\\n \"share_price\": \"109.85\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1724.0\",\\n \"share_price\": \"109.85\"\\n },\\n {\\n \"transaction_date\": \"2016-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"725.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26284.0\",\\n \"share_price\": \"111.43\"\\n },\\n {\\n \"transaction_date\": \"2016-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26284.0\",\\n \"share_price\": \"111.68\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"27612.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"27612.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26772.0\",\\n \"share_price\": \"109.99\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26772.0\",\\n \"share_price\": \"109.99\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26772.0\",\\n \"share_price\": \"109.99\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26284.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"26284.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25444.0\",\\n \"share_price\": \"109.99\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25444.0\",\\n \"share_price\": \"109.99\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53055.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25444.0\",\\n \"share_price\": \"109.99\"\\n },\\n {\\n \"transaction_date\": \"2016-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"268644.0\",\\n \"share_price\": \"110.01\"\\n },\\n {\\n \"transaction_date\": \"2016-03-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"268644.0\",\\n \"share_price\": \"106.91\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"525000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"256356.0\",\\n \"share_price\": \"105.91\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"COO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"525000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"525000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"268644.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"268644.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"256356.0\",\\n \"share_price\": \"105.91\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"525000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"525000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"256356.0\",\\n \"share_price\": \"105.91\"\\n },\\n {\\n \"transaction_date\": \"2016-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"525000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18241.0\",\\n \"share_price\": \"103.92\"\\n },\\n {\\n \"transaction_date\": \"2016-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33329.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15088.0\",\\n \"share_price\": \"103.01\"\\n },\\n {\\n \"transaction_date\": \"2016-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33329.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-02-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2580.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2016-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"276.0\",\\n \"share_price\": \"93.99\"\\n },\\n {\\n \"transaction_date\": \"2016-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"95.47\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1007.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2016-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1007.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-11-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.81\"\\n },\\n {\\n \"transaction_date\": \"2015-11-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"121.23\"\\n },\\n {\\n \"transaction_date\": \"2015-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"121.94\"\\n },\\n {\\n \"transaction_date\": \"2015-11-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"123.07\"\\n },\\n {\\n \"transaction_date\": \"2015-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.73\"\\n },\\n {\\n \"transaction_date\": \"2015-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"120.0\"\\n },\\n {\\n \"transaction_date\": \"2015-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2888.0\",\\n \"share_price\": \"121.09\"\\n },\\n {\\n \"transaction_date\": \"2015-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10700.0\",\\n \"share_price\": \"120.74\"\\n },\\n {\\n \"transaction_date\": \"2015-10-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"39345.0\",\\n \"share_price\": \"120.58\"\\n },\\n {\\n \"transaction_date\": \"2015-10-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"121.08\"\\n },\\n {\\n \"transaction_date\": \"2015-10-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66793.0\",\\n \"share_price\": \"120.48\"\\n },\\n {\\n \"transaction_date\": \"2015-10-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"160655.0\",\\n \"share_price\": \"120.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2908.0\",\\n \"share_price\": \"111.88\"\\n },\\n {\\n \"transaction_date\": \"2015-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"111.88\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"725.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"993.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"942.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1225.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1664.0\",\\n \"share_price\": \"111.86\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3885.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6350.0\",\\n \"share_price\": \"111.86\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8698.0\",\\n \"share_price\": \"111.86\"\\n },\\n {\\n \"transaction_date\": \"2015-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7582.0\",\\n \"share_price\": \"110.11\"\\n },\\n {\\n \"transaction_date\": \"2015-10-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"111.2\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"65264.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"108323.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"108323.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"65264.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"65264.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"108323.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"65264.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"108323.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"108323.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"65264.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"108323.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"65264.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"108323.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"108323.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"65264.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17152.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"65264.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"42573.0\",\\n \"share_price\": \"110.44\"\\n },\\n {\\n \"transaction_date\": \"2015-10-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4300.0\",\\n \"share_price\": \"110.94\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15918.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45891.0\",\\n \"share_price\": \"109.58\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45890.0\",\\n \"share_price\": \"109.58\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45890.0\",\\n \"share_price\": \"109.58\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46874.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"46874.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"47223.0\",\\n \"share_price\": \"109.58\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"15918.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8136.0\",\\n \"share_price\": \"109.58\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"47223.0\",\\n \"share_price\": \"109.58\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"47223.0\",\\n \"share_price\": \"109.58\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45541.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"45541.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92764.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BELL, JAMES A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1007.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21786.0\",\\n \"share_price\": \"116.28\"\\n },\\n {\\n \"transaction_date\": \"2015-09-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9618.0\",\\n \"share_price\": \"111.82\"\\n },\\n {\\n \"transaction_date\": \"2015-09-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"112.46\"\\n },\\n {\\n \"transaction_date\": \"2015-09-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6700.0\",\\n \"share_price\": \"110.95\"\\n },\\n {\\n \"transaction_date\": \"2015-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33330.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16712.0\",\\n \"share_price\": \"109.27\"\\n },\\n {\\n \"transaction_date\": \"2015-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33330.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"350000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"290836.0\",\\n \"share_price\": \"103.12\"\\n },\\n {\\n \"transaction_date\": \"2015-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"171853.0\",\\n \"share_price\": \"103.12\"\\n },\\n {\\n \"transaction_date\": \"2015-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"178147.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"178147.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"350000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"247.0\",\\n \"share_price\": \"115.96\"\\n },\\n {\\n \"transaction_date\": \"2015-07-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"122.9\"\\n },\\n {\\n \"transaction_date\": \"2015-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"124.12\"\\n },\\n {\\n \"transaction_date\": \"2015-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14985.0\",\\n \"share_price\": \"124.49\"\\n },\\n {\\n \"transaction_date\": \"2015-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"124.33\"\\n },\\n {\\n \"transaction_date\": \"2015-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"124.27\"\\n },\\n {\\n \"transaction_date\": \"2015-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"124.34\"\\n },\\n {\\n \"transaction_date\": \"2015-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9100.0\",\\n \"share_price\": \"125.25\"\\n },\\n {\\n \"transaction_date\": \"2015-07-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"132.76\"\\n },\\n {\\n \"transaction_date\": \"2015-07-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"131.69\"\\n },\\n {\\n \"transaction_date\": \"2015-07-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16189.0\",\\n \"share_price\": \"131.03\"\\n },\\n {\\n \"transaction_date\": \"2015-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8886.0\",\\n \"share_price\": \"131.46\"\\n },\\n {\\n \"transaction_date\": \"2015-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"704.0\",\\n \"share_price\": \"132.86\"\\n },\\n {\\n \"transaction_date\": \"2015-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15410.0\",\\n \"share_price\": \"132.22\"\\n },\\n {\\n \"transaction_date\": \"2015-07-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"47170.0\",\\n \"share_price\": \"129.62\"\\n },\\n {\\n \"transaction_date\": \"2015-07-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"91959.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-07-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"91959.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12697.0\",\\n \"share_price\": \"128.45\"\\n },\\n {\\n \"transaction_date\": \"2015-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11388.0\",\\n \"share_price\": \"129.21\"\\n },\\n {\\n \"transaction_date\": \"2015-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"6.59\"\\n },\\n {\\n \"transaction_date\": \"2015-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"131.47\"\\n },\\n {\\n \"transaction_date\": \"2015-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-05-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19985.0\",\\n \"share_price\": \"131.86\"\\n },\\n {\\n \"transaction_date\": \"2015-05-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"130.94\"\\n },\\n {\\n \"transaction_date\": \"2015-05-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"132.24\"\\n },\\n {\\n \"transaction_date\": \"2015-05-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8190.0\",\\n \"share_price\": \"126.36\"\\n },\\n {\\n \"transaction_date\": \"2015-05-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"128.09\"\\n },\\n {\\n \"transaction_date\": \"2015-05-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3707.0\",\\n \"share_price\": \"127.14\"\\n },\\n {\\n \"transaction_date\": \"2015-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13206.0\",\\n \"share_price\": \"129.84\"\\n },\\n {\\n \"transaction_date\": \"2015-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10494.0\",\\n \"share_price\": \"128.84\"\\n },\\n {\\n \"transaction_date\": \"2015-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"130.38\"\\n },\\n {\\n \"transaction_date\": \"2015-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"82141.0\",\\n \"share_price\": \"128.95\"\\n },\\n {\\n \"transaction_date\": \"2015-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"159549.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"78111.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"81438.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"127.76\"\\n },\\n {\\n \"transaction_date\": \"2015-04-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10790.0\",\\n \"share_price\": \"125.35\"\\n },\\n {\\n \"transaction_date\": \"2015-04-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11600.0\",\\n \"share_price\": \"126.08\"\\n },\\n {\\n \"transaction_date\": \"2015-04-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"127.27\"\\n },\\n {\\n \"transaction_date\": \"2015-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"88489.0\",\\n \"share_price\": \"129.67\"\\n },\\n {\\n \"transaction_date\": \"2015-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"88489.0\",\\n \"share_price\": \"129.67\"\\n },\\n {\\n \"transaction_date\": \"2015-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"501.0\",\\n \"share_price\": \"128.6\"\\n },\\n {\\n \"transaction_date\": \"2015-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"127.99\"\\n },\\n {\\n \"transaction_date\": \"2015-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4935.0\",\\n \"share_price\": \"127.59\"\\n },\\n {\\n \"transaction_date\": \"2015-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"126.84\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"943.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"993.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"725.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1225.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"126.78\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3886.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6423.0\",\\n \"share_price\": \"126.78\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7666.0\",\\n \"share_price\": \"126.78\"\\n },\\n {\\n \"transaction_date\": \"2015-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"128.05\"\\n },\\n {\\n \"transaction_date\": \"2015-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9525.0\",\\n \"share_price\": \"127.39\"\\n },\\n {\\n \"transaction_date\": \"2015-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9472.0\",\\n \"share_price\": \"126.67\"\\n },\\n {\\n \"transaction_date\": \"2015-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"124.89\"\\n },\\n {\\n \"transaction_date\": \"2015-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19400.0\",\\n \"share_price\": \"127.12\"\\n },\\n {\\n \"transaction_date\": \"2015-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"125.93\"\\n },\\n {\\n \"transaction_date\": \"2015-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23009.0\",\\n \"share_price\": \"124.74\"\\n },\\n {\\n \"transaction_date\": \"2015-04-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1991.0\",\\n \"share_price\": \"125.43\"\\n },\\n {\\n \"transaction_date\": \"2015-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70929.0\",\\n \"share_price\": \"124.25\"\\n },\\n {\\n \"transaction_date\": \"2015-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"140126.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"27301.0\",\\n \"share_price\": \"124.25\"\\n },\\n {\\n \"transaction_date\": \"2015-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"53056.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"140126.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-03-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10823.0\",\\n \"share_price\": \"128.82\"\\n },\\n {\\n \"transaction_date\": \"2015-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20842.0\",\\n \"share_price\": \"123.59\"\\n },\\n {\\n \"transaction_date\": \"2015-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2008.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-03-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"128.97\"\\n },\\n {\\n \"transaction_date\": \"2015-03-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"128.8\"\\n },\\n {\\n \"transaction_date\": \"2015-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33330.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33330.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15806.0\",\\n \"share_price\": \"128.54\"\\n },\\n {\\n \"transaction_date\": \"2015-02-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"128.13\"\\n },\\n {\\n \"transaction_date\": \"2015-02-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"25.72\"\\n },\\n {\\n \"transaction_date\": \"2015-02-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2015-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"KONDO, CHRIS\",\\n \"executive_title\": \"Principal Accounting Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"267.0\",\\n \"share_price\": \"127.08\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3325.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1646.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1646.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2015-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2104.0\",\\n \"share_price\": \"112.42\"\\n },\\n {\\n \"transaction_date\": \"2015-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"113.19\"\\n },\\n {\\n \"transaction_date\": \"2014-12-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2904.0\",\\n \"share_price\": \"112.73\"\\n },\\n {\\n \"transaction_date\": \"2014-12-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"113.29\"\\n },\\n {\\n \"transaction_date\": \"2014-12-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8928.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-11-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"117.66\"\\n },\\n {\\n \"transaction_date\": \"2014-11-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"61543.0\",\\n \"share_price\": \"116.53\"\\n },\\n {\\n \"transaction_date\": \"2014-11-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"116.74\"\\n },\\n {\\n \"transaction_date\": \"2014-11-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3504.0\",\\n \"share_price\": \"116.4\"\\n },\\n {\\n \"transaction_date\": \"2014-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3806.0\",\\n \"share_price\": \"108.81\"\\n },\\n {\\n \"transaction_date\": \"2014-10-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"259437.0\",\\n \"share_price\": \"106.78\"\\n },\\n {\\n \"transaction_date\": \"2014-10-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2498.0\",\\n \"share_price\": \"107.31\"\\n },\\n {\\n \"transaction_date\": \"2014-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"416.0\",\\n \"share_price\": \"102.43\"\\n },\\n {\\n \"transaction_date\": \"2014-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5700.0\",\\n \"share_price\": \"102.09\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"122863.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68576.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68576.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"122863.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"122863.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"122863.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68576.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"122863.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68576.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68576.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"122863.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68576.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"122863.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68576.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"122863.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"68576.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15407.0\",\\n \"share_price\": \"97.54\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4402.0\",\\n \"share_price\": \"97.54\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13125.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12558.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6442.0\",\\n \"share_price\": \"97.54\"\\n },\\n {\\n \"transaction_date\": \"2014-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30625.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"348846.0\",\\n \"share_price\": \"101.46\"\\n },\\n {\\n \"transaction_date\": \"2014-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"348846.0\",\\n \"share_price\": \"101.0\"\\n },\\n {\\n \"transaction_date\": \"2014-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"241340.0\",\\n \"share_price\": \"101.04\"\\n },\\n {\\n \"transaction_date\": \"2014-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"107506.0\",\\n \"share_price\": \"101.12\"\\n },\\n {\\n \"transaction_date\": \"2014-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"310097.0\",\\n \"share_price\": \"101.1\"\\n },\\n {\\n \"transaction_date\": \"2014-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38328.0\",\\n \"share_price\": \"101.74\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"350000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"875000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"456575.0\",\\n \"share_price\": \"100.96\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"351154.0\",\\n \"share_price\": \"100.96\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"351154.0\",\\n \"share_price\": \"100.96\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"525000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"263065.0\",\\n \"share_price\": \"100.96\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"261935.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"261935.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"875000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"351154.0\",\\n \"share_price\": \"100.96\"\\n },\\n {\\n \"transaction_date\": \"2014-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22043.0\",\\n \"share_price\": \"101.63\"\\n },\\n {\\n \"transaction_date\": \"2014-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1974.0\",\\n \"share_price\": \"99.51\"\\n },\\n {\\n \"transaction_date\": \"2014-09-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"100.37\"\\n },\\n {\\n \"transaction_date\": \"2014-09-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7800.0\",\\n \"share_price\": \"99.47\"\\n },\\n {\\n \"transaction_date\": \"2014-09-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"101.55\"\\n },\\n {\\n \"transaction_date\": \"2014-09-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"102.8\"\\n },\\n {\\n \"transaction_date\": \"2014-09-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4100.0\",\\n \"share_price\": \"99.15\"\\n },\\n {\\n \"transaction_date\": \"2014-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33330.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16956.0\",\\n \"share_price\": \"98.12\"\\n },\\n {\\n \"transaction_date\": \"2014-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33330.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"560000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"290834.0\",\\n \"share_price\": \"101.32\"\\n },\\n {\\n \"transaction_date\": \"2014-08-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1798.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-08-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1798.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"2.2\"\\n },\\n {\\n \"transaction_date\": \"2014-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21704.0\",\\n \"share_price\": \"94.72\"\\n },\\n {\\n \"transaction_date\": \"2014-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"48296.0\",\\n \"share_price\": \"94.38\"\\n },\\n {\\n \"transaction_date\": \"2014-07-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"96.06\"\\n },\\n {\\n \"transaction_date\": \"2014-07-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3091.0\",\\n \"share_price\": \"97.4\"\\n },\\n {\\n \"transaction_date\": \"2014-07-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"97.62\"\\n },\\n {\\n \"transaction_date\": \"2014-07-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WAGNER, SUSAN\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1646.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"91.47\"\\n },\\n {\\n \"transaction_date\": \"2014-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1391.0\",\\n \"share_price\": \"90.83\"\\n },\\n {\\n \"transaction_date\": \"2014-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8331.0\",\\n \"share_price\": \"633.0\"\\n },\\n {\\n \"transaction_date\": \"2014-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16264.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16264.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-05-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-05-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"15.42\"\\n },\\n {\\n \"transaction_date\": \"2014-05-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"643.0632\"\\n },\\n {\\n \"transaction_date\": \"2014-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1137.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4093.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-05-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1107.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"113.0\",\\n \"share_price\": \"624.06\"\\n },\\n {\\n \"transaction_date\": \"2014-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"627.69\"\\n },\\n {\\n \"transaction_date\": \"2014-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"626.7522\"\\n },\\n {\\n \"transaction_date\": \"2014-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5747.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33476.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"62555.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5817.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"AHRENDTS, ANGELA J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5739.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-04-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"267.0\",\\n \"share_price\": \"568.8916\"\\n },\\n {\\n \"transaction_date\": \"2014-04-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"565.3\"\\n },\\n {\\n \"transaction_date\": \"2014-04-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"562.19\"\\n },\\n {\\n \"transaction_date\": \"2014-04-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"567.2833\"\\n },\\n {\\n \"transaction_date\": \"2014-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"216.0\",\\n \"share_price\": \"531.3806\"\\n },\\n {\\n \"transaction_date\": \"2014-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"528.585\"\\n },\\n {\\n \"transaction_date\": \"2014-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"530.09\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"629.0\",\\n \"share_price\": \"517.9599\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1258.0\",\\n \"share_price\": \"517.9599\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"662.0\",\\n \"share_price\": \"517.9599\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1794.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"927.0\",\\n \"share_price\": \"517.9599\"\\n },\\n {\\n \"transaction_date\": \"2014-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1794.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-03-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"453.0\",\\n \"share_price\": \"536.0792\"\\n },\\n {\\n \"transaction_date\": \"2014-03-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"209.0\",\\n \"share_price\": \"540.1494\"\\n },\\n {\\n \"transaction_date\": \"2014-03-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1202.0\",\\n \"share_price\": \"537.0059\"\\n },\\n {\\n \"transaction_date\": \"2014-03-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"538.09\"\\n },\\n {\\n \"transaction_date\": \"2014-03-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"539.2675\"\\n },\\n {\\n \"transaction_date\": \"2014-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2869.0\",\\n \"share_price\": \"524.69\"\\n },\\n {\\n \"transaction_date\": \"2014-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1984.0\",\\n \"share_price\": \"531.5537\"\\n },\\n {\\n \"transaction_date\": \"2014-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"532.6675\"\\n },\\n {\\n \"transaction_date\": \"2014-03-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"531.54\"\\n },\\n {\\n \"transaction_date\": \"2014-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4761.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4761.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-03-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2177.0\",\\n \"share_price\": \"531.24\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6626.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6416.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"22738.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6626.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6416.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"22738.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6626.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6416.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"22738.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6626.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6416.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"22738.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6626.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6416.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"22738.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6626.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6416.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-03-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"22738.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"475.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"475.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"475.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"475.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"475.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"475.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"475.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"523.8575\"\\n },\\n {\\n \"transaction_date\": \"2014-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"522.63\"\\n },\\n {\\n \"transaction_date\": \"2014-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"424.0\",\\n \"share_price\": \"521.7842\"\\n },\\n {\\n \"transaction_date\": \"2014-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"528.73\"\\n },\\n {\\n \"transaction_date\": \"2014-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"527.07\"\\n },\\n {\\n \"transaction_date\": \"2014-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"525.775\"\\n },\\n {\\n \"transaction_date\": \"2014-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"840.0\",\\n \"share_price\": \"524.9281\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2014-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"55.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"55.0\",\\n \"share_price\": \"388.178\"\\n },\\n {\\n \"transaction_date\": \"2014-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"55.0\",\\n \"share_price\": \"388.178\"\\n },\\n {\\n \"transaction_date\": \"2014-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"55.0\",\\n \"share_price\": \"388.178\"\\n },\\n {\\n \"transaction_date\": \"2014-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"55.0\",\\n \"share_price\": \"388.178\"\\n },\\n {\\n \"transaction_date\": \"2014-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"55.0\",\\n \"share_price\": \"388.178\"\\n },\\n {\\n \"transaction_date\": \"2014-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"55.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2014-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"554.42\"\\n },\\n {\\n \"transaction_date\": \"2014-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"551.46\"\\n },\\n {\\n \"transaction_date\": \"2014-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"549.98\"\\n },\\n {\\n \"transaction_date\": \"2014-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"547.73\"\\n },\\n {\\n \"transaction_date\": \"2014-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"301.0\",\\n \"share_price\": \"545.62\"\\n },\\n {\\n \"transaction_date\": \"2014-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"625.0\",\\n \"share_price\": \"546.97\"\\n },\\n {\\n \"transaction_date\": \"2014-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"552.77\"\\n },\\n {\\n \"transaction_date\": \"2014-01-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"338.0\",\\n \"share_price\": \"555.56\"\\n },\\n {\\n \"transaction_date\": \"2013-12-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3066.0\",\\n \"share_price\": \"554.2\"\\n },\\n {\\n \"transaction_date\": \"2013-12-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12742.0\",\\n \"share_price\": \"570.09\"\\n },\\n {\\n \"transaction_date\": \"2013-12-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-12-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12742.0\",\\n \"share_price\": \"570.09\"\\n },\\n {\\n \"transaction_date\": \"2013-12-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-12-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-12-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-12-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-11-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"496.0\",\\n \"share_price\": \"515.4805\"\\n },\\n {\\n \"transaction_date\": \"2013-11-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"517.644\"\\n },\\n {\\n \"transaction_date\": \"2013-11-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"518.4435\"\\n },\\n {\\n \"transaction_date\": \"2013-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"524.1023\"\\n },\\n {\\n \"transaction_date\": \"2013-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"526.2358\"\\n },\\n {\\n \"transaction_date\": \"2013-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"527.04\"\\n },\\n {\\n \"transaction_date\": \"2013-11-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1390.0\",\\n \"share_price\": \"525.536\"\\n },\\n {\\n \"transaction_date\": \"2013-10-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1997.0\",\\n \"share_price\": \"524.8611\"\\n },\\n {\\n \"transaction_date\": \"2013-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1443.0\",\\n \"share_price\": \"500.9544\"\\n },\\n {\\n \"transaction_date\": \"2013-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"501.5975\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1229.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1907.0\",\\n \"share_price\": \"498.68\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"636.0\",\\n \"share_price\": \"498.68\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1271.0\",\\n \"share_price\": \"498.68\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1271.0\",\\n \"share_price\": \"498.68\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"954.0\",\\n \"share_price\": \"498.68\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1907.0\",\\n \"share_price\": \"498.68\"\\n },\\n {\\n \"transaction_date\": \"2013-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1229.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-10-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14352.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"485.7443\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1679.0\",\\n \"share_price\": \"486.6182\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"488.7925\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21.0\",\\n \"share_price\": \"487.28\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"490.969\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"484.741\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"492.4202\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"491.6582\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"314.0\",\\n \"share_price\": \"483.4432\"\\n },\\n {\\n \"transaction_date\": \"2013-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"489.713\"\\n },\\n {\\n \"transaction_date\": \"2013-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12686.0\",\\n \"share_price\": \"467.41\"\\n },\\n {\\n \"transaction_date\": \"2013-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3171.0\",\\n \"share_price\": \"464.9\"\\n },\\n {\\n \"transaction_date\": \"2013-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP and Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2272.0\",\\n \"share_price\": \"498.691\"\\n },\\n {\\n \"transaction_date\": \"2013-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP and Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4762.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-09-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MAESTRI, LUCA\",\\n \"executive_title\": \"VP and Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4762.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24580.0\",\\n \"share_price\": \"504.1782\"\\n },\\n {\\n \"transaction_date\": \"2013-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"72877.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25420.0\",\\n \"share_price\": \"501.02\"\\n },\\n {\\n \"transaction_date\": \"2013-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38028.0\",\\n \"share_price\": \"501.02\"\\n },\\n {\\n \"transaction_date\": \"2013-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"72877.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-08-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"500.6867\"\\n },\\n {\\n \"transaction_date\": \"2013-08-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"476.0\",\\n \"share_price\": \"501.739\"\\n },\\n {\\n \"transaction_date\": \"2013-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"500.44\"\\n },\\n {\\n \"transaction_date\": \"2013-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"577.0\",\\n \"share_price\": \"497.6342\"\\n },\\n {\\n \"transaction_date\": \"2013-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"498.69\"\\n },\\n {\\n \"transaction_date\": \"2013-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"499.51\"\\n },\\n {\\n \"transaction_date\": \"2013-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"500.1085\"\\n },\\n {\\n \"transaction_date\": \"2013-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37172.0\",\\n \"share_price\": \"500.0\"\\n },\\n {\\n \"transaction_date\": \"2013-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"551.0\",\\n \"share_price\": \"498.7574\"\\n },\\n {\\n \"transaction_date\": \"2013-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"601.0\",\\n \"share_price\": \"500.8707\"\\n },\\n {\\n \"transaction_date\": \"2013-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"501.915\"\\n },\\n {\\n \"transaction_date\": \"2013-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"502.395\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5321.0\",\\n \"share_price\": \"449.7865\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"10.19\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7229.0\",\\n \"share_price\": \"440.3486\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2771.0\",\\n \"share_price\": \"441.8586\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"113.62\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"181.17\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"122.5\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7562.0\",\\n \"share_price\": \"202.0\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4124.0\",\\n \"share_price\": \"448.2059\"\\n },\\n {\\n \"transaction_date\": \"2013-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23117.0\",\\n \"share_price\": \"449.1215\"\\n },\\n {\\n \"transaction_date\": \"2013-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37172.0\",\\n \"share_price\": \"440.31\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7000.0\",\\n \"share_price\": \"403.3605\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8500.0\",\\n \"share_price\": \"402.4498\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5549.0\",\\n \"share_price\": \"400.7238\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"401.6235\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5982.0\",\\n \"share_price\": \"402.7537\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6461.0\",\\n \"share_price\": \"403.7652\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"404.591\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"405.3667\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7328.0\",\\n \"share_price\": \"399.6635\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3699.0\",\\n \"share_price\": \"398.7757\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"405.0925\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5500.0\",\\n \"share_price\": \"400.3678\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"401.2085\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5900.0\",\\n \"share_price\": \"404.4107\"\\n },\\n {\\n \"transaction_date\": \"2013-06-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6172.0\",\\n \"share_price\": \"399.5349\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"80000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38181.0\",\\n \"share_price\": \"413.5\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37828.0\",\\n \"share_price\": \"413.5\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37878.0\",\\n \"share_price\": \"430.0\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37828.0\",\\n \"share_price\": \"413.5\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"28414.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14465.0\",\\n \"share_price\": \"413.5\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"28414.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"80000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"41391.0\",\\n \"share_price\": \"413.5\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37828.0\",\\n \"share_price\": \"413.5\"\\n },\\n {\\n \"transaction_date\": \"2013-06-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-06-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1911.0\",\\n \"share_price\": \"430.05\"\\n },\\n {\\n \"transaction_date\": \"2013-06-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"425.0414\"\\n },\\n {\\n \"transaction_date\": \"2013-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1565.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1565.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"424.5486\"\\n },\\n {\\n \"transaction_date\": \"2013-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"422.9475\"\\n },\\n {\\n \"transaction_date\": \"2013-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"374.0\",\\n \"share_price\": \"426.1902\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"962.0\",\\n \"share_price\": \"419.85\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1282.0\",\\n \"share_price\": \"419.85\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1576.0\",\\n \"share_price\": \"419.85\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"935.0\",\\n \"share_price\": \"419.85\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"641.0\",\\n \"share_price\": \"419.85\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1576.0\",\\n \"share_price\": \"419.85\"\\n },\\n {\\n \"transaction_date\": \"2013-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23581.0\",\\n \"share_price\": \"443.66\"\\n },\\n {\\n \"transaction_date\": \"2013-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"46586.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2879.0\",\\n \"share_price\": \"443.66\"\\n },\\n {\\n \"transaction_date\": \"2013-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-03-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46586.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2013-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"41.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"41.0\",\\n \"share_price\": \"387.1665\"\\n },\\n {\\n \"transaction_date\": \"2013-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"41.0\",\\n \"share_price\": \"387.1665\"\\n },\\n {\\n \"transaction_date\": \"2013-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"41.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2013-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"41.0\",\\n \"share_price\": \"387.1665\"\\n },\\n {\\n \"transaction_date\": \"2013-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"41.0\",\\n \"share_price\": \"387.1665\"\\n },\\n {\\n \"transaction_date\": \"2013-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"41.0\",\\n \"share_price\": \"387.1665\"\\n },\\n {\\n \"transaction_date\": \"2013-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"41.0\",\\n \"share_price\": \"387.1665\"\\n },\\n {\\n \"transaction_date\": \"2013-01-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"59000.0\",\\n \"share_price\": \"7.475\"\\n },\\n {\\n \"transaction_date\": \"2013-01-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-12-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1730.0\",\\n \"share_price\": \"509.794\"\\n },\\n {\\n \"transaction_date\": \"2012-12-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-12-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-11-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"583.9914\"\\n },\\n {\\n \"transaction_date\": \"2012-11-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-11-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-11-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT L\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"582.2145\"\\n },\\n {\\n \"transaction_date\": \"2012-11-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"562.13\"\\n },\\n {\\n \"transaction_date\": \"2012-11-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"180.0\",\\n \"share_price\": \"565.0822\"\\n },\\n {\\n \"transaction_date\": \"2012-11-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"564.26\"\\n },\\n {\\n \"transaction_date\": \"2012-11-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"563.0525\"\\n },\\n {\\n \"transaction_date\": \"2012-11-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5199.0\",\\n \"share_price\": \"530.0\"\\n },\\n {\\n \"transaction_date\": \"2012-11-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"465.0\",\\n \"share_price\": \"528.64\"\\n },\\n {\\n \"transaction_date\": \"2012-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"527.78\"\\n },\\n {\\n \"transaction_date\": \"2012-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4100.0\",\\n \"share_price\": \"528.69\"\\n },\\n {\\n \"transaction_date\": \"2012-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"529.7\"\\n },\\n {\\n \"transaction_date\": \"2012-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"531.86\"\\n },\\n {\\n \"transaction_date\": \"2012-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"532.51\"\\n },\\n {\\n \"transaction_date\": \"2012-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"526.52\"\\n },\\n {\\n \"transaction_date\": \"2012-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2662.0\",\\n \"share_price\": \"530.77\"\\n },\\n {\\n \"transaction_date\": \"2012-11-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7500.0\",\\n \"share_price\": \"560.65\"\\n },\\n {\\n \"transaction_date\": \"2012-11-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2438.0\",\\n \"share_price\": \"548.6735\"\\n },\\n {\\n \"transaction_date\": \"2012-11-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"549.6167\"\\n },\\n {\\n \"transaction_date\": \"2012-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5137.0\",\\n \"share_price\": \"600.0\"\\n },\\n {\\n \"transaction_date\": \"2012-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BROWETT, JOHN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BROWETT, JOHN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2159.0\",\\n \"share_price\": \"609.84\"\\n },\\n {\\n \"transaction_date\": \"2012-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BROWETT, JOHN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"631.73\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"633.03\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"634.23\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"635.34\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"637.38\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"639.71\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"642.02\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"643.54\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"645.09\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"647.62\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"646.59\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"514.0\",\\n \"share_price\": \"648.88\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3345.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-10-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3345.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"872.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"465.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1743.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"872.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1162.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1743.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"581.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"407.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1162.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"697.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1743.0\",\\n \"share_price\": \"634.76\"\\n },\\n {\\n \"transaction_date\": \"2012-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RICCIO, DANIEL J.\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-09-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"688.25\"\\n },\\n {\\n \"transaction_date\": \"2012-09-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"684.78\"\\n },\\n {\\n \"transaction_date\": \"2012-09-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"685.86\"\\n },\\n {\\n \"transaction_date\": \"2012-09-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"281.0\",\\n \"share_price\": \"686.68\"\\n },\\n {\\n \"transaction_date\": \"2012-09-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"689.49\"\\n },\\n {\\n \"transaction_date\": \"2012-09-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"690.39\"\\n },\\n {\\n \"transaction_date\": \"2012-09-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"691.12\"\\n },\\n {\\n \"transaction_date\": \"2012-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11477.0\",\\n \"share_price\": \"700.095\"\\n },\\n {\\n \"transaction_date\": \"2012-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2905.0\",\\n \"share_price\": \"691.28\"\\n },\\n {\\n \"transaction_date\": \"2012-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-09-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FEDERIGHI, CRAIG\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4647.0\",\\n \"share_price\": \"660.59\"\\n },\\n {\\n \"transaction_date\": \"2012-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"64.33\"\\n },\\n {\\n \"transaction_date\": \"2012-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"663.75\"\\n },\\n {\\n \"transaction_date\": \"2012-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"39.78\"\\n },\\n {\\n \"transaction_date\": \"2012-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"113.62\"\\n },\\n {\\n \"transaction_date\": \"2012-08-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7500.0\",\\n \"share_price\": \"619.1664\"\\n },\\n {\\n \"transaction_date\": \"2012-07-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1.0\",\\n \"share_price\": \"387.7615\"\\n },\\n {\\n \"transaction_date\": \"2012-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"588.8543\"\\n },\\n {\\n \"transaction_date\": \"2012-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"6.995\"\\n },\\n {\\n \"transaction_date\": \"2012-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3789.0\",\\n \"share_price\": \"590.2384\"\\n },\\n {\\n \"transaction_date\": \"2012-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (Right to Buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4111.0\",\\n \"share_price\": \"591.3208\"\\n },\\n {\\n \"transaction_date\": \"2012-05-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-05-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2954.0\",\\n \"share_price\": \"572.188\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"564.6475\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"950.0\",\\n \"share_price\": \"563.52\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"566.75\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"567.814\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"850.0\",\\n \"share_price\": \"568.9853\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"565.6075\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"570.02\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"571.36\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"560.1143\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"561.3558\"\\n },\\n {\\n \"transaction_date\": \"2012-05-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"562.325\"\\n },\\n {\\n \"transaction_date\": \"2012-04-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"603.5171\"\\n },\\n {\\n \"transaction_date\": \"2012-04-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16607.0\",\\n \"share_price\": \"602.7258\"\\n },\\n {\\n \"transaction_date\": \"2012-04-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5793.0\",\\n \"share_price\": \"601.2423\"\\n },\\n {\\n \"transaction_date\": \"2012-04-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-04-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31351.0\",\\n \"share_price\": \"604.8403\"\\n },\\n {\\n \"transaction_date\": \"2012-04-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.16\"\\n },\\n {\\n \"transaction_date\": \"2012-04-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"14.205\"\\n },\\n {\\n \"transaction_date\": \"2012-04-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10400.0\",\\n \"share_price\": \"603.6477\"\\n },\\n {\\n \"transaction_date\": \"2012-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"BROWETT, JOHN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"408.0\",\\n \"share_price\": \"589.174\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"608.6\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"610.09\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3497.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3497.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"584.9757\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"580.0\",\\n \"share_price\": \"586.31\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"587.6483\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"385.0\",\\n \"share_price\": \"591.3882\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"592.7225\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"595.39\"\\n },\\n {\\n \"transaction_date\": \"2012-04-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"601.48\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2753.0\",\\n \"share_price\": \"605.23\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3427.0\",\\n \"share_price\": \"605.23\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2296.0\",\\n \"share_price\": \"605.23\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"599.5697\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5800.0\",\\n \"share_price\": \"598.7233\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21670.0\",\\n \"share_price\": \"597.8124\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24931.0\",\\n \"share_price\": \"596.9518\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7900.0\",\\n \"share_price\": \"595.96\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5934.0\",\\n \"share_price\": \"606.7977\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22131.0\",\\n \"share_price\": \"599.3349\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"56794.0\",\\n \"share_price\": \"598.5692\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1222.0\",\\n \"share_price\": \"597.0566\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"601.9462\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30490.0\",\\n \"share_price\": \"603.0538\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33661.0\",\\n \"share_price\": \"602.3041\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"602.915\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24505.0\",\\n \"share_price\": \"606.0162\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"603.7567\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"601.0938\"\\n },\\n {\\n \"transaction_date\": \"2012-03-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9000.0\",\\n \"share_price\": \"605.1679\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"56016.0\",\\n \"share_price\": \"596.05\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"69853.0\",\\n \"share_price\": \"596.05\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"55849.0\",\\n \"share_price\": \"596.05\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"93360.0\",\\n \"share_price\": \"596.05\"\\n },\\n {\\n \"transaction_date\": \"2012-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"55849.0\",\\n \"share_price\": \"596.05\"\\n },\\n {\\n \"transaction_date\": \"2012-03-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-03-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2868.0\",\\n \"share_price\": \"551.5105\"\\n },\\n {\\n \"transaction_date\": \"2012-03-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7982.0\",\\n \"share_price\": \"550.9773\"\\n },\\n {\\n \"transaction_date\": \"2012-03-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"547.8023\"\\n },\\n {\\n \"transaction_date\": \"2012-03-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5428.0\",\\n \"share_price\": \"548.9329\"\\n },\\n {\\n \"transaction_date\": \"2012-03-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"549.5748\"\\n },\\n {\\n \"transaction_date\": \"2012-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"37500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17322.0\",\\n \"share_price\": \"545.17\"\\n },\\n {\\n \"transaction_date\": \"2012-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"387.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-02-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"499.6137\"\\n },\\n {\\n \"transaction_date\": \"2012-02-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"450.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"142.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"142.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"337.2375\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"337.2375\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"62.0\",\\n \"share_price\": \"337.2375\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"337.2375\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"337.2375\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"337.2375\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"337.2375\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"63.0\",\\n \"share_price\": \"337.2375\"\\n },\\n {\\n \"transaction_date\": \"2012-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"452.2843\"\\n },\\n {\\n \"transaction_date\": \"2012-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2012-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"36.54\"\\n },\\n {\\n \"transaction_date\": \"2012-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"505.0\",\\n \"share_price\": \"409.8831\"\\n },\\n {\\n \"transaction_date\": \"2012-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2012-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"895.0\",\\n \"share_price\": \"411.0055\"\\n },\\n {\\n \"transaction_date\": \"2012-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"412.43\"\\n },\\n {\\n \"transaction_date\": \"2012-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-12-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"525.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-12-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-12-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"400.0\"\\n },\\n {\\n \"transaction_date\": \"2011-12-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"385.9483\"\\n },\\n {\\n \"transaction_date\": \"2011-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"525.0\",\\n \"share_price\": \"388.091\"\\n },\\n {\\n \"transaction_date\": \"2011-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1175.0\",\\n \"share_price\": \"385.0202\"\\n },\\n {\\n \"transaction_date\": \"2011-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"386.92\"\\n },\\n {\\n \"transaction_date\": \"2011-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"382.2867\"\\n },\\n {\\n \"transaction_date\": \"2011-11-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1370.0\",\\n \"share_price\": \"374.4856\"\\n },\\n {\\n \"transaction_date\": \"2011-11-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"375.3292\"\\n },\\n {\\n \"transaction_date\": \"2011-11-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"367.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"180.05\"\\n },\\n {\\n \"transaction_date\": \"2011-11-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IGER, ROBERT A\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"142.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"400.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"396.19\"\\n },\\n {\\n \"transaction_date\": \"2011-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"396.9682\"\\n },\\n {\\n \"transaction_date\": \"2011-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"393.915\"\\n },\\n {\\n \"transaction_date\": \"2011-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"395.1833\"\\n },\\n {\\n \"transaction_date\": \"2011-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"397.2528\"\\n },\\n {\\n \"transaction_date\": \"2011-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"398.2425\"\\n },\\n {\\n \"transaction_date\": \"2011-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"398.91\"\\n },\\n {\\n \"transaction_date\": \"2011-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7595.0\",\\n \"share_price\": \"397.8879\"\\n },\\n {\\n \"transaction_date\": \"2011-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"407.86\"\\n },\\n {\\n \"transaction_date\": \"2011-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"224.0\",\\n \"share_price\": \"407.112\"\\n },\\n {\\n \"transaction_date\": \"2011-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"406.0533\"\\n },\\n {\\n \"transaction_date\": \"2011-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"408.0\",\\n \"share_price\": \"399.5518\"\\n },\\n {\\n \"transaction_date\": \"2011-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"405.1729\"\\n },\\n {\\n \"transaction_date\": \"2011-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"403.812\"\\n },\\n {\\n \"transaction_date\": \"2011-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"400.5318\"\\n },\\n {\\n \"transaction_date\": \"2011-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"402.4971\"\\n },\\n {\\n \"transaction_date\": \"2011-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"401.4525\"\\n },\\n {\\n \"transaction_date\": \"2011-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1333.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4668.0\",\\n \"share_price\": \"422.24\"\\n },\\n {\\n \"transaction_date\": \"2011-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1333.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1167.0\",\\n \"share_price\": \"422.24\"\\n },\\n {\\n \"transaction_date\": \"2011-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"425.34\"\\n },\\n {\\n \"transaction_date\": \"2011-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"423.99\"\\n },\\n {\\n \"transaction_date\": \"2011-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"478.0\",\\n \"share_price\": \"420.8754\"\\n },\\n {\\n \"transaction_date\": \"2011-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"419.6007\"\\n },\\n {\\n \"transaction_date\": \"2011-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"418.605\"\\n },\\n {\\n \"transaction_date\": \"2011-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"720.0\",\\n \"share_price\": \"417.55\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1986.0\",\\n \"share_price\": \"422.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3332.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3502.0\",\\n \"share_price\": \"422.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3332.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2918.0\",\\n \"share_price\": \"422.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-10-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-10-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"400.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"380.212\"\\n },\\n {\\n \"transaction_date\": \"2011-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"378.365\"\\n },\\n {\\n \"transaction_date\": \"2011-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"377.0867\"\\n },\\n {\\n \"transaction_date\": \"2011-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"375.4109\"\\n },\\n {\\n \"transaction_date\": \"2011-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"381.17\"\\n },\\n {\\n \"transaction_date\": \"2011-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"379.2517\"\\n },\\n {\\n \"transaction_date\": \"2011-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"403.2371\"\\n },\\n {\\n \"transaction_date\": \"2011-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"872.0\",\\n \"share_price\": \"402.8888\"\\n },\\n {\\n \"transaction_date\": \"2011-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"401.1224\"\\n },\\n {\\n \"transaction_date\": \"2011-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"400.1325\"\\n },\\n {\\n \"transaction_date\": \"2011-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"407.0\"\\n },\\n {\\n \"transaction_date\": \"2011-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"404.706\"\\n },\\n {\\n \"transaction_date\": \"2011-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11428.0\",\\n \"share_price\": \"412.14\"\\n },\\n {\\n \"transaction_date\": \"2011-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-09-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-09-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-09-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"400.0\"\\n },\\n {\\n \"transaction_date\": \"2011-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4669.0\",\\n \"share_price\": \"377.48\"\\n },\\n {\\n \"transaction_date\": \"2011-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CUE, EDUARDO H\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"384.7736\"\\n },\\n {\\n \"transaction_date\": \"2011-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"386.028\"\\n },\\n {\\n \"transaction_date\": \"2011-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"381.5\"\\n },\\n {\\n \"transaction_date\": \"2011-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"382.224\"\\n },\\n {\\n \"transaction_date\": \"2011-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"383.7867\"\\n },\\n {\\n \"transaction_date\": \"2011-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"395.715\"\\n },\\n {\\n \"transaction_date\": \"2011-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"397.6833\"\\n },\\n {\\n \"transaction_date\": \"2011-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"393.94\"\\n },\\n {\\n \"transaction_date\": \"2011-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"394.9009\"\\n },\\n {\\n \"transaction_date\": \"2011-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"52.0\",\\n \"share_price\": \"293.28\"\\n },\\n {\\n \"transaction_date\": \"2011-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"70.0\",\\n \"share_price\": \"293.28\"\\n },\\n {\\n \"transaction_date\": \"2011-07-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"983.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-07-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"983.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-07-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"983.0\",\\n \"share_price\": \"400.0\"\\n },\\n {\\n \"transaction_date\": \"2011-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"9.75\"\\n },\\n {\\n \"transaction_date\": \"2011-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"389.9577\"\\n },\\n {\\n \"transaction_date\": \"2011-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2017.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2017.0\",\\n \"share_price\": \"400.0\"\\n },\\n {\\n \"transaction_date\": \"2011-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2017.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"377.92\"\\n },\\n {\\n \"transaction_date\": \"2011-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-07-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"350.0\"\\n },\\n {\\n \"transaction_date\": \"2011-07-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-07-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-07-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"341.005\"\\n },\\n {\\n \"transaction_date\": \"2011-07-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"340.13\"\\n },\\n {\\n \"transaction_date\": \"2011-07-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"336.978\"\\n },\\n {\\n \"transaction_date\": \"2011-07-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"335.7667\"\\n },\\n {\\n \"transaction_date\": \"2011-07-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-07-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-07-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"342.53\"\\n },\\n {\\n \"transaction_date\": \"2011-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"345.39\"\\n },\\n {\\n \"transaction_date\": \"2011-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"347.9888\"\\n },\\n {\\n \"transaction_date\": \"2011-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"349.2083\"\\n },\\n {\\n \"transaction_date\": \"2011-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"350.1456\"\\n },\\n {\\n \"transaction_date\": \"2011-06-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"351.08\"\\n },\\n {\\n \"transaction_date\": \"2011-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6190.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-05-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"347.9096\"\\n },\\n {\\n \"transaction_date\": \"2011-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"349.7723\"\\n },\\n {\\n \"transaction_date\": \"2011-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"347.6871\"\\n },\\n {\\n \"transaction_date\": \"2011-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1474.0\",\\n \"share_price\": \"346.8112\"\\n },\\n {\\n \"transaction_date\": \"2011-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"348.83\"\\n },\\n {\\n \"transaction_date\": \"2011-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92.0\",\\n \"share_price\": \"346.91\"\\n },\\n {\\n \"transaction_date\": \"2011-04-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2956.0\",\\n \"share_price\": \"351.9231\"\\n },\\n {\\n \"transaction_date\": \"2011-04-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38863.0\",\\n \"share_price\": \"351.8901\"\\n },\\n {\\n \"transaction_date\": \"2011-04-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"321.4056\"\\n },\\n {\\n \"transaction_date\": \"2011-04-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"324.6633\"\\n },\\n {\\n \"transaction_date\": \"2011-04-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"190.0\",\\n \"share_price\": \"327.52\"\\n },\\n {\\n \"transaction_date\": \"2011-04-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"325.9788\"\\n },\\n {\\n \"transaction_date\": \"2011-04-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"508.0\",\\n \"share_price\": \"322.3154\"\\n },\\n {\\n \"transaction_date\": \"2011-04-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"323.9485\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1696.0\",\\n \"share_price\": \"327.46\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3502.0\",\\n \"share_price\": \"327.46\"\\n },\\n {\\n \"transaction_date\": \"2011-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"351.0917\"\\n },\\n {\\n \"transaction_date\": \"2011-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"348.2983\"\\n },\\n {\\n \"transaction_date\": \"2011-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"349.1769\"\\n },\\n {\\n \"transaction_date\": \"2011-03-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"347.73\"\\n },\\n {\\n \"transaction_date\": \"2011-03-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"383.0\",\\n \"share_price\": \"348.7468\"\\n },\\n {\\n \"transaction_date\": \"2011-03-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9600.0\",\\n \"share_price\": \"345.6156\"\\n },\\n {\\n \"transaction_date\": \"2011-03-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9500.0\",\\n \"share_price\": \"346.6813\"\\n },\\n {\\n \"transaction_date\": \"2011-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"37500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17217.0\",\\n \"share_price\": \"346.67\"\\n },\\n {\\n \"transaction_date\": \"2011-03-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"596.0\",\\n \"share_price\": \"350.0\"\\n },\\n {\\n \"transaction_date\": \"2011-03-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-03-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"353.31\"\\n },\\n {\\n \"transaction_date\": \"2011-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"348.3918\"\\n },\\n {\\n \"transaction_date\": \"2011-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6170.0\",\\n \"share_price\": \"349.5114\"\\n },\\n {\\n \"transaction_date\": \"2011-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7894.0\",\\n \"share_price\": \"350.1909\"\\n },\\n {\\n \"transaction_date\": \"2011-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"351.3227\"\\n },\\n {\\n \"transaction_date\": \"2011-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5736.0\",\\n \"share_price\": \"352.3053\"\\n },\\n {\\n \"transaction_date\": \"2011-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"354.8961\"\\n },\\n {\\n \"transaction_date\": \"2011-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1370.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"584.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"355.37\"\\n },\\n {\\n \"transaction_date\": \"2011-02-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-02-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"350.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"185.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"342.0488\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"342.725\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6145.0\",\\n \"share_price\": \"344.1603\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14655.0\",\\n \"share_price\": \"345.1\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"185.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2011-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"95.0\",\\n \"share_price\": \"222.5725\"\\n },\\n {\\n \"transaction_date\": \"2011-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"95.0\",\\n \"share_price\": \"222.5725\"\\n },\\n {\\n \"transaction_date\": \"2011-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"95.0\",\\n \"share_price\": \"222.5725\"\\n },\\n {\\n \"transaction_date\": \"2011-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"95.0\",\\n \"share_price\": \"222.5725\"\\n },\\n {\\n \"transaction_date\": \"2011-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92.0\",\\n \"share_price\": \"222.5725\"\\n },\\n {\\n \"transaction_date\": \"2011-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"90.0\",\\n \"share_price\": \"222.5725\"\\n },\\n {\\n \"transaction_date\": \"2011-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"95.0\",\\n \"share_price\": \"222.5725\"\\n },\\n {\\n \"transaction_date\": \"2011-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"95.0\",\\n \"share_price\": \"222.5725\"\\n },\\n {\\n \"transaction_date\": \"2011-01-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2011-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"339.21\"\\n },\\n {\\n \"transaction_date\": \"2010-12-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"850.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-12-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"277.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-12-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"470.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-12-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6800.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-12-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-12-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-12-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4668.0\",\\n \"share_price\": \"320.56\"\\n },\\n {\\n \"transaction_date\": \"2010-12-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-11-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"313.16\"\\n },\\n {\\n \"transaction_date\": \"2010-11-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SUGAR, RONALD D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"185.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"307.0\"\\n },\\n {\\n \"transaction_date\": \"2010-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"306.07\"\\n },\\n {\\n \"transaction_date\": \"2010-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"11.73\"\\n },\\n {\\n \"transaction_date\": \"2010-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"11.73\"\\n },\\n {\\n \"transaction_date\": \"2010-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"308.0\"\\n },\\n {\\n \"transaction_date\": \"2010-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"36.54\"\\n },\\n {\\n \"transaction_date\": \"2010-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7135.0\",\\n \"share_price\": \"313.1795\"\\n },\\n {\\n \"transaction_date\": \"2010-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4668.0\",\\n \"share_price\": \"318.0\"\\n },\\n {\\n \"transaction_date\": \"2010-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"318.5\"\\n },\\n {\\n \"transaction_date\": \"2010-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1577.0\",\\n \"share_price\": \"314.74\"\\n },\\n {\\n \"transaction_date\": \"2010-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3502.0\",\\n \"share_price\": \"317.74\"\\n },\\n {\\n \"transaction_date\": \"2010-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"307.44\"\\n },\\n {\\n \"transaction_date\": \"2010-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-10-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"289.61\"\\n },\\n {\\n \"transaction_date\": \"2010-10-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-09-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"291.39\"\\n },\\n {\\n \"transaction_date\": \"2010-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5800.0\",\\n \"share_price\": \"287.3729\"\\n },\\n {\\n \"transaction_date\": \"2010-09-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7882.0\",\\n \"share_price\": \"286.4937\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11318.0\",\\n \"share_price\": \"283.77\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-09-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"278.14\"\\n },\\n {\\n \"transaction_date\": \"2010-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4663.0\",\\n \"share_price\": \"263.41\"\\n },\\n {\\n \"transaction_date\": \"2010-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125.0\",\\n \"share_price\": \"261.5501\"\\n },\\n {\\n \"transaction_date\": \"2010-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Corporate Controller\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"118.0\",\\n \"share_price\": \"179.8685\"\\n },\\n {\\n \"transaction_date\": \"2010-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125.0\",\\n \"share_price\": \"179.8685\"\\n },\\n {\\n \"transaction_date\": \"2010-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"WILLIAMS, JEFFREY E\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"118.0\",\\n \"share_price\": \"179.8685\"\\n },\\n {\\n \"transaction_date\": \"2010-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAPERMASTER, MARK D\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"118.0\",\\n \"share_price\": \"179.8685\"\\n },\\n {\\n \"transaction_date\": \"2010-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"118.0\",\\n \"share_price\": \"179.8685\"\\n },\\n {\\n \"transaction_date\": \"2010-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"118.0\",\\n \"share_price\": \"179.8685\"\\n },\\n {\\n \"transaction_date\": \"2010-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"118.0\",\\n \"share_price\": \"179.8685\"\\n },\\n {\\n \"transaction_date\": \"2010-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"118.0\",\\n \"share_price\": \"179.8685\"\\n },\\n {\\n \"transaction_date\": \"2010-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"118.0\",\\n \"share_price\": \"179.8685\"\\n },\\n {\\n \"transaction_date\": \"2010-06-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"252.4547\"\\n },\\n {\\n \"transaction_date\": \"2010-06-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-06-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"23.5313\"\\n },\\n {\\n \"transaction_date\": \"2010-06-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"23.5313\"\\n },\\n {\\n \"transaction_date\": \"2010-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45000.0\",\\n \"share_price\": \"262.126\"\\n },\\n {\\n \"transaction_date\": \"2010-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-04-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAPERMASTER, MARK D\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"268.7\"\\n },\\n {\\n \"transaction_date\": \"2010-04-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAPERMASTER, MARK D\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4500.0\",\\n \"share_price\": \"270.12\"\\n },\\n {\\n \"transaction_date\": \"2010-04-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAPERMASTER, MARK D\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"271.27\"\\n },\\n {\\n \"transaction_date\": \"2010-04-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"271.98\"\\n },\\n {\\n \"transaction_date\": \"2010-04-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAPERMASTER, MARK D\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-04-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAPERMASTER, MARK D\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8384.0\",\\n \"share_price\": \"270.83\"\\n },\\n {\\n \"transaction_date\": \"2010-04-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAPERMASTER, MARK D\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"18750.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4687.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10100.0\",\\n \"share_price\": \"268.44\"\\n },\\n {\\n \"transaction_date\": \"2010-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2136.0\",\\n \"share_price\": \"270.8775\"\\n },\\n {\\n \"transaction_date\": \"2010-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4687.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2010-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35012.0\",\\n \"share_price\": \"267.01\"\\n },\\n {\\n \"transaction_date\": \"2010-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1239.0\",\\n \"share_price\": \"248.92\"\\n },\\n {\\n \"transaction_date\": \"2010-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"850.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-04-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"237.67\"\\n },\\n {\\n \"transaction_date\": \"2010-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"80415.0\",\\n \"share_price\": \"230.147\"\\n },\\n {\\n \"transaction_date\": \"2010-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17135.0\",\\n \"share_price\": \"226.8692\"\\n },\\n {\\n \"transaction_date\": \"2010-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21200.0\",\\n \"share_price\": \"227.9873\"\\n },\\n {\\n \"transaction_date\": \"2010-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"107075.0\",\\n \"share_price\": \"230.3238\"\\n },\\n {\\n \"transaction_date\": \"2010-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"107075.0\",\\n \"share_price\": \"230.0876\"\\n },\\n {\\n \"transaction_date\": \"2010-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25851.0\",\\n \"share_price\": \"228.8747\"\\n },\\n {\\n \"transaction_date\": \"2010-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"72942.0\",\\n \"share_price\": \"230.046\"\\n },\\n {\\n \"transaction_date\": \"2010-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22832.0\",\\n \"share_price\": \"230.6904\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92925.0\",\\n \"share_price\": \"229.37\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"34575.0\",\\n \"share_price\": \"229.37\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"34575.0\",\\n \"share_price\": \"229.37\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"69585.0\",\\n \"share_price\": \"229.37\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"69585.0\",\\n \"share_price\": \"229.37\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"140040.0\",\\n \"share_price\": \"229.37\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2010-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"92925.0\",\\n \"share_price\": \"229.37\"\\n },\\n {\\n \"transaction_date\": \"2010-03-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5589.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9397.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7562.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5342.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5589.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"198.4257\"\\n },\\n {\\n \"transaction_date\": \"2010-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"650.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President, CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2010-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"213.55\"\\n },\\n {\\n \"transaction_date\": \"2009-12-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAPERMASTER, MARK D\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"176.0\",\\n \"share_price\": \"120.6745\"\\n },\\n {\\n \"transaction_date\": \"2009-12-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"22.0\",\\n \"share_price\": \"120.6745\"\\n },\\n {\\n \"transaction_date\": \"2009-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"91978.0\",\\n \"share_price\": \"202.22\"\\n },\\n {\\n \"transaction_date\": \"2009-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2009-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"108022.0\",\\n \"share_price\": \"200.97\"\\n },\\n {\\n \"transaction_date\": \"2009-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7065.0\",\\n \"share_price\": \"202.803\"\\n },\\n {\\n \"transaction_date\": \"2009-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"131.85\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"68.3\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"15.695\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"42.99\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53562.0\",\\n \"share_price\": \"204.19\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"36.54\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-10-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"203.84\"\\n },\\n {\\n \"transaction_date\": \"2009-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"858.0\",\\n \"share_price\": \"190.56\"\\n },\\n {\\n \"transaction_date\": \"2009-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-10-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"188.42\"\\n },\\n {\\n \"transaction_date\": \"2009-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-09-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SEWELL, D BRUCE\",\\n \"executive_title\": \"GC, SVP Legal and Gov\\'t Affrs\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4203.0\",\\n \"share_price\": \"172.16\"\\n },\\n {\\n \"transaction_date\": \"2009-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2288.0\",\\n \"share_price\": \"170.05\"\\n },\\n {\\n \"transaction_date\": \"2009-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2288.0\",\\n \"share_price\": \"170.05\"\\n },\\n {\\n \"transaction_date\": \"2009-08-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-08-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-08-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11438.0\",\\n \"share_price\": \"170.05\"\\n },\\n {\\n \"transaction_date\": \"2009-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-07-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7100.0\",\\n \"share_price\": \"164.0535\"\\n },\\n {\\n \"transaction_date\": \"2009-07-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20613.0\",\\n \"share_price\": \"163.7349\"\\n },\\n {\\n \"transaction_date\": \"2009-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"204842.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"204842.0\",\\n \"share_price\": \"160.0\"\\n },\\n {\\n \"transaction_date\": \"2009-07-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"204842.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2009-07-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45158.0\",\\n \"share_price\": \"160.023\"\\n },\\n {\\n \"transaction_date\": \"2009-07-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45158.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-07-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"45158.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2009-07-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"158.53\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"36750.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"36.54\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"158.84\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"70313.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"66584.0\",\\n \"share_price\": \"157.274\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"54620.0\",\\n \"share_price\": \"158.68\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9999.0\",\\n \"share_price\": \"159.278\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36750.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70313.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"37500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16498.0\",\\n \"share_price\": \"151.75\"\\n },\\n {\\n \"transaction_date\": \"2009-07-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"149.17\"\\n },\\n {\\n \"transaction_date\": \"2009-07-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"288.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"288.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"288.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOPERMAN, DANIEL\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"74.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"288.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"288.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"288.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"288.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"288.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"251.0\",\\n \"share_price\": \"73.6185\"\\n },\\n {\\n \"transaction_date\": \"2009-06-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-06-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22287.0\",\\n \"share_price\": \"135.88\"\\n },\\n {\\n \"transaction_date\": \"2009-06-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-05-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"60000.0\",\\n \"share_price\": \"10.375\"\\n },\\n {\\n \"transaction_date\": \"2009-05-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"128.7\"\\n },\\n {\\n \"transaction_date\": \"2009-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3198.0\",\\n \"share_price\": \"128.7001\"\\n },\\n {\\n \"transaction_date\": \"2009-04-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"122.86\"\\n },\\n {\\n \"transaction_date\": \"2009-04-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"PAPERMASTER, MARK D\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"671.0\",\\n \"share_price\": \"117.64\"\\n },\\n {\\n \"transaction_date\": \"2009-04-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1875.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2009-03-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2009-01-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33296.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2009-01-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option (right to buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33296.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-12-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"51.0\",\\n \"share_price\": \"72.9385\"\\n },\\n {\\n \"transaction_date\": \"2008-12-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOPERMAN, DANIEL\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock (ESPP)\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"149.0\",\\n \"share_price\": \"72.9385\"\\n },\\n {\\n \"transaction_date\": \"2008-11-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOPERMAN, DANIEL\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"140.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-11-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOPERMAN, DANIEL\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"140.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-11-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOPERMAN, DANIEL\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOPERMAN, DANIEL\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOPERMAN, DANIEL\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14283.0\",\\n \"share_price\": \"107.59\"\\n },\\n {\\n \"transaction_date\": \"2008-10-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-10-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"107.33\"\\n },\\n {\\n \"transaction_date\": \"2008-10-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"10.375\"\\n },\\n {\\n \"transaction_date\": \"2008-10-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29100.0\",\\n \"share_price\": \"106.88\"\\n },\\n {\\n \"transaction_date\": \"2008-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2860.0\",\\n \"share_price\": \"97.4\"\\n },\\n {\\n \"transaction_date\": \"2008-10-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOPERMAN, DANIEL\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"60000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4006.0\",\\n \"share_price\": \"152.65\"\\n },\\n {\\n \"transaction_date\": \"2008-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-09-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RAFAEL, BETSY\",\\n \"executive_title\": \"VP, Controller and PAO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2288.0\",\\n \"share_price\": \"169.53\"\\n },\\n {\\n \"transaction_date\": \"2008-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2288.0\",\\n \"share_price\": \"169.53\"\\n },\\n {\\n \"transaction_date\": \"2008-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2288.0\",\\n \"share_price\": \"169.53\"\\n },\\n {\\n \"transaction_date\": \"2008-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-08-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-08-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11438.0\",\\n \"share_price\": \"169.53\"\\n },\\n {\\n \"transaction_date\": \"2008-08-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-08-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"10.375\"\\n },\\n {\\n \"transaction_date\": \"2008-08-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"175.236\"\\n },\\n {\\n \"transaction_date\": \"2008-08-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-08-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"71500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-08-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"71500.0\",\\n \"share_price\": \"14.03\"\\n },\\n {\\n \"transaction_date\": \"2008-08-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"71500.0\",\\n \"share_price\": \"172.49\"\\n },\\n {\\n \"transaction_date\": \"2008-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-08-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-08-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"159.065\"\\n },\\n {\\n \"transaction_date\": \"2008-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"10.225\"\\n },\\n {\\n \"transaction_date\": \"2008-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33750.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33750.0\",\\n \"share_price\": \"159.38\"\\n },\\n {\\n \"transaction_date\": \"2008-08-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33750.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2008-07-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-07-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22500.0\",\\n \"share_price\": \"161.06\"\\n },\\n {\\n \"transaction_date\": \"2008-07-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"22500.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2008-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2008-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"158.0\"\\n },\\n {\\n \"transaction_date\": \"2008-07-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20866.0\",\\n \"share_price\": \"159.57\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"85000.0\",\\n \"share_price\": \"163.07\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7187.0\",\\n \"share_price\": \"164.743\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7187.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"148550.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7187.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"148550.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"63550.0\",\\n \"share_price\": \"163.96\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"165.2\"\\n },\\n {\\n \"transaction_date\": \"2008-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2008-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16634.0\",\\n \"share_price\": \"165.15\"\\n },\\n {\\n \"transaction_date\": \"2008-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"37500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37500.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FORSTALL, SCOTT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-05-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"MANSFIELD, ROBERT J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"171.85\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.2\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"172.0\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"172.13\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"172.55\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"172.8\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"172.81\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"172.84\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.0\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"173.01\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.05\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.1\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.15\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.16\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.47\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.5\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.6\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.7\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"173.76\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"170.75\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6341.0\",\\n \"share_price\": \"171.1\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"171.27\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"173.06\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"171.3\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"171.5\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"171.52\"\\n },\\n {\\n \"transaction_date\": \"2008-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"171.75\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"170.63\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"170.64\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"775.0\",\\n \"share_price\": \"170.65\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"170.66\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125.0\",\\n \"share_price\": \"170.67\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"170.59\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"170.58\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"170.57\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"170.56\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"170.55\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"170.54\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"170.53\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"170.51\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"170.46\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"170.5\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"170.49\"\\n },\\n {\\n \"transaction_date\": \"2008-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"170.52\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"139.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8.0\",\\n \"share_price\": \"140.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"139.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"284.0\",\\n \"share_price\": \"138.75\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"140.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.25\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"138.75\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"138.5\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6250.0\",\\n \"share_price\": \"46.57\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"139.72\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"139.13\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1353.0\",\\n \"share_price\": \"139.14\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.15\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2015.0\",\\n \"share_price\": \"139.16\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.19\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"139.2\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"138.5\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"139.05\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"139.4\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"139.45\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"450.0\",\\n \"share_price\": \"139.21\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"139.36\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"139.59\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1561.0\",\\n \"share_price\": \"139.63\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.67\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"122.0\",\\n \"share_price\": \"139.68\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2459.0\",\\n \"share_price\": \"139.69\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2819.0\",\\n \"share_price\": \"139.7\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6091.0\",\\n \"share_price\": \"139.71\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"139.73\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"139.74\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"139.78\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"139.79\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2690.0\",\\n \"share_price\": \"138.74\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4955.0\",\\n \"share_price\": \"138.75\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"138.76\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1847.0\",\\n \"share_price\": \"138.77\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1198.0\",\\n \"share_price\": \"138.78\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"138.8\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"451.0\",\\n \"share_price\": \"138.81\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"138.85\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"450.0\",\\n \"share_price\": \"138.88\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4350.0\",\\n \"share_price\": \"138.89\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"138.9\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1022.0\",\\n \"share_price\": \"138.95\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4200.0\",\\n \"share_price\": \"138.97\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"629.0\",\\n \"share_price\": \"138.98\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"220.0\",\\n \"share_price\": \"138.99\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"139.01\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2480.0\",\\n \"share_price\": \"139.03\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"139.08\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"139.09\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8160.0\",\\n \"share_price\": \"139.1\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4514.0\",\\n \"share_price\": \"139.11\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8400.0\",\\n \"share_price\": \"139.12\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"138.32\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"138.33\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"138.34\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.35\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"138.36\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"138.4\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"138.41\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"138.42\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1245.0\",\\n \"share_price\": \"138.43\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"138.54\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"750.0\",\\n \"share_price\": \"138.59\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"138.6\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"750.0\",\\n \"share_price\": \"138.61\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"138.62\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"138.63\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"138.64\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"138.65\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"138.66\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"550.0\",\\n \"share_price\": \"138.67\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"138.28\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"138.29\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5500.0\",\\n \"share_price\": \"138.3\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"138.31\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"138.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"138.2\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"138.4\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2585.0\",\\n \"share_price\": \"138.68\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9200.0\",\\n \"share_price\": \"138.69\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"138.7\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"138.72\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8275.0\",\\n \"share_price\": \"138.73\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"138.65\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"138.7\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"138.73\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"216.0\",\\n \"share_price\": \"138.75\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"138.8\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"139.1\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"139.15\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"139.2\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"139.3\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5500.0\",\\n \"share_price\": \"139.35\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4500.0\",\\n \"share_price\": \"139.5\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"139.55\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"139.6\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"139.7\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"139.9\"\\n },\\n {\\n \"transaction_date\": \"2008-03-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7000.0\",\\n \"share_price\": \"140.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"135.52\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.69\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"139.71\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"139.8\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.83\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.84\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.85\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.89\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"139.91\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.92\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.22\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.23\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"139.24\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.26\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"139.27\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.28\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.29\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"139.3\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"139.31\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.34\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.35\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"139.38\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"133.97\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6600.0\",\\n \"share_price\": \"133.98\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7200.0\",\\n \"share_price\": \"133.99\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5100.0\",\\n \"share_price\": \"134.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"134.01\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"134.1\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4353.0\",\\n \"share_price\": \"134.11\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5100.0\",\\n \"share_price\": \"134.12\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"113659.0\",\\n \"share_price\": \"139.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"113659.0\",\\n \"share_price\": \"139.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"113659.0\",\\n \"share_price\": \"139.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"138.72\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"138.73\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.8\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.86\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"138.92\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"138.94\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.97\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"138.98\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.01\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.02\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.04\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.07\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"139.09\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.15\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.18\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.2\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.7\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.92\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.29\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"137.5\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"137.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"137.54\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.55\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10.0\",\\n \"share_price\": \"137.58\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"390.0\",\\n \"share_price\": \"137.59\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.62\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"137.67\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.7\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.78\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.8\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"137.834\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"137.84\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.23\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.9\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.91\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.97\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.99\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"138.01\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"138.02\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"138.05\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"138.12\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.18\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.2\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"134.7\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"134.77\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"134.85\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"134.92\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"134.99\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"135.18\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"135.29\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"135.45\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"135.5\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.68\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"135.54\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"135.64\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"135.65\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"135.81\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"135.84\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"135.9\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.04\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.1\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"136.2\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.22\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"134.23\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"134.24\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"134.26\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6300.0\",\\n \"share_price\": \"134.27\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"136.26\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.3\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.32\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"136.33\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.34\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"136.36\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"136.4\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"136.41\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"134.21\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5479.0\",\\n \"share_price\": \"134.41\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4200.0\",\\n \"share_price\": \"134.42\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7600.0\",\\n \"share_price\": \"134.44\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"134.46\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2727.0\",\\n \"share_price\": \"134.49\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"134.52\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4200.0\",\\n \"share_price\": \"134.59\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5100.0\",\\n \"share_price\": \"134.61\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"134.63\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"134.65\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"421.0\",\\n \"share_price\": \"134.66\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"134.69\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"133.79\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"133.8\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"133.81\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"133.82\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"133.83\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"133.84\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"803.0\",\\n \"share_price\": \"133.85\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"133.86\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"133.87\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2095.0\",\\n \"share_price\": \"133.89\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"133.93\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"133.94\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3297.0\",\\n \"share_price\": \"134.29\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5600.0\",\\n \"share_price\": \"134.3\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"134.31\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4800.0\",\\n \"share_price\": \"134.32\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"134.33\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"134.34\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6900.0\",\\n \"share_price\": \"134.35\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5973.0\",\\n \"share_price\": \"134.36\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7029.0\",\\n \"share_price\": \"134.37\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9805.0\",\\n \"share_price\": \"134.38\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2148.0\",\\n \"share_price\": \"134.39\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6065.0\",\\n \"share_price\": \"134.4\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7200.0\",\\n \"share_price\": \"133.95\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"133.96\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"113659.0\",\\n \"share_price\": \"139.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.45\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"139.44\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.41\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"139.39\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45750.0\",\\n \"share_price\": \"139.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"IVE, JONATHAN P\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"90784.0\",\\n \"share_price\": \"139.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.52\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"138.54\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.56\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.66\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.68\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.55\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.58\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.59\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"140.62\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"138.45\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"138.43\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.39\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"138.24\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"139.56\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"139.55\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.54\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.52\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"139.51\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.5\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.48\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"139.47\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"140.64\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"139.46\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.95\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.96\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"139.98\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"139.99\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"140.0\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"140.01\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"140.02\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"140.15\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.16\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.72\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.75\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.76\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.77\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.78\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.79\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"139.81\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"139.82\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.86\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.87\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"139.88\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.93\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.94\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"139.36\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"139.57\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"139.58\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.6\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"139.12\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.13\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"139.16\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.17\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"137.85\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"137.86\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.88\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"137.89\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.03\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.04\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"140.06\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.07\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.09\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"140.1\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.12\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.14\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.17\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.18\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"140.21\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.26\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"140.28\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"140.31\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"140.37\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.41\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"140.42\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.44\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.48\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.5\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.51\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"139.61\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"139.62\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.63\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"139.64\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.65\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"139.66\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"139.67\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"113659.0\",\\n \"share_price\": \"139.53\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1390.0\",\\n \"share_price\": \"134.13\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4110.0\",\\n \"share_price\": \"134.14\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9983.0\",\\n \"share_price\": \"134.15\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"134.16\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3422.0\",\\n \"share_price\": \"134.17\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"134.19\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4800.0\",\\n \"share_price\": \"134.2\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"140.66\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.68\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.7\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"140.71\"\\n },\\n {\\n \"transaction_date\": \"2008-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"140.76\"\\n },\\n {\\n \"transaction_date\": \"2008-03-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3423.0\",\\n \"share_price\": \"128.33\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"704.0\",\\n \"share_price\": \"128.55\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"128.36\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5674.0\",\\n \"share_price\": \"128.32\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"128.34\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"128.37\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1279.0\",\\n \"share_price\": \"128.56\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"128.38\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"128.39\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"128.4\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"128.42\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"128.44\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"420.0\",\\n \"share_price\": \"128.47\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"128.5\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"128.51\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"128.35\"\\n },\\n {\\n \"transaction_date\": \"2008-02-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"128.54\"\\n },\\n {\\n \"transaction_date\": \"2008-01-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-01-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President & CFO\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-01-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"7.48\"\\n },\\n {\\n \"transaction_date\": \"2008-01-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (right to buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-01-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"131.57\"\\n },\\n {\\n \"transaction_date\": \"2008-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option (right to buy)\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2008-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"7.48\"\\n },\\n {\\n \"transaction_date\": \"2008-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JUNG, ANDREA\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Options\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-12-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-12-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2007-12-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2007-12-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4575.0\",\\n \"share_price\": \"190.86\"\\n },\\n {\\n \"transaction_date\": \"2007-12-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"54500.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-11-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9727.0\",\\n \"share_price\": \"183.67\"\\n },\\n {\\n \"transaction_date\": \"2007-11-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10273.0\",\\n \"share_price\": \"183.7\"\\n },\\n {\\n \"transaction_date\": \"2007-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOPERMAN, DANIEL\",\\n \"executive_title\": \"SVP, Gen\\'l Counsel, Secretary\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"133000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-10-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"185.09\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2105.0\",\\n \"share_price\": \"185.19\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25906.0\",\\n \"share_price\": \"185.01\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13320.0\",\\n \"share_price\": \"185.02\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9325.0\",\\n \"share_price\": \"185.03\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"185.04\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6910.0\",\\n \"share_price\": \"185.05\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6560.0\",\\n \"share_price\": \"185.06\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6700.0\",\\n \"share_price\": \"185.07\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2384.0\",\\n \"share_price\": \"185.08\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"185.2\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"185.1\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1710.0\",\\n \"share_price\": \"185.18\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"185.17\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"185.16\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2317.0\",\\n \"share_price\": \"185.11\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"185.12\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"185.13\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1511.0\",\\n \"share_price\": \"185.14\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"185.15\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"185.21\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2007-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"606452.0\",\\n \"share_price\": \"185.0\"\\n },\\n {\\n \"transaction_date\": \"2007-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13200.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"136.34\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"136.45\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"136.5\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"136.52\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13200.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"136.55\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"136.63\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"136.7\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"136.6\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"136.59\"\\n },\\n {\\n \"transaction_date\": \"2007-09-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"136.56\"\\n },\\n {\\n \"transaction_date\": \"2007-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2007-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2007-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2287.0\",\\n \"share_price\": \"136.25\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"122.9\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"122.7\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"122.75\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"122.4\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"122.5\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250.0\",\\n \"share_price\": \"122.5\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"122.6\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"123.0\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8250.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"123.2\"\\n },\\n {\\n \"transaction_date\": \"2007-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"123.1\"\\n },\\n {\\n \"transaction_date\": \"2007-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-08-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOBS, STEVEN P\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-08-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOBS, STEVEN P\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"120000.0\",\\n \"share_price\": \"5.75\"\\n },\\n {\\n \"transaction_date\": \"2007-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"145.37\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"5.75\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"143.73\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20800.0\",\\n \"share_price\": \"5.75\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"144.1\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"144.09\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"144.05\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"750.0\",\\n \"share_price\": \"144.04\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"144.03\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"144.02\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"144.01\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2399.0\",\\n \"share_price\": \"144.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"143.99\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1451.0\",\\n \"share_price\": \"143.98\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"143.97\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1260.0\",\\n \"share_price\": \"143.96\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1176.0\",\\n \"share_price\": \"143.95\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"450.0\",\\n \"share_price\": \"143.94\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2230.0\",\\n \"share_price\": \"143.92\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"143.91\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1484.0\",\\n \"share_price\": \"143.9\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"143.88\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"143.87\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"143.86\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"143.85\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"143.83\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"143.62\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"143.81\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"143.8\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"143.77\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"143.76\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"143.74\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20800.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21149.0\",\\n \"share_price\": \"5.75\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3999.0\",\\n \"share_price\": \"144.45\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1350.0\",\\n \"share_price\": \"144.44\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1950.0\",\\n \"share_price\": \"144.43\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"950.0\",\\n \"share_price\": \"144.42\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"144.4\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"144.17\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"144.11\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"144.41\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1204.0\",\\n \"share_price\": \"144.39\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"660.0\",\\n \"share_price\": \"144.38\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"144.37\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"144.36\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"140.0\",\\n \"share_price\": \"144.35\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"144.33\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"144.32\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"144.31\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1422.0\",\\n \"share_price\": \"144.3\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"74.0\",\\n \"share_price\": \"144.28\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"144.27\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"522.0\",\\n \"share_price\": \"144.25\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"144.24\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"278.0\",\\n \"share_price\": \"144.22\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"144.21\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"646.0\",\\n \"share_price\": \"144.2\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"144.19\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"54.0\",\\n \"share_price\": \"144.18\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"144.81\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"144.8\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"144.59\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1550.0\",\\n \"share_price\": \"144.57\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"144.56\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"144.55\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"144.53\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2783.0\",\\n \"share_price\": \"144.5\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"550.0\",\\n \"share_price\": \"144.49\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"144.48\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"144.47\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1650.0\",\\n \"share_price\": \"144.46\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26601.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"29029.0\",\\n \"share_price\": \"5.75\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"145.1\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"145.09\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"145.08\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"144.16\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"144.15\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"144.14\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"144.13\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2949.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Options\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18200.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"26601.0\",\\n \"share_price\": \"5.75\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"144.79\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"350.0\",\\n \"share_price\": \"144.78\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"144.77\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"427.0\",\\n \"share_price\": \"144.76\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"144.75\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"473.0\",\\n \"share_price\": \"144.74\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"144.7\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"144.69\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1150.0\",\\n \"share_price\": \"144.68\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"144.67\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"144.66\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2850.0\",\\n \"share_price\": \"144.65\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"968.0\",\\n \"share_price\": \"144.64\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"144.62\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150.0\",\\n \"share_price\": \"144.61\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"144.6\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"144.58\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"205.0\",\\n \"share_price\": \"145.06\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1505.0\",\\n \"share_price\": \"145.05\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"145.04\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"145.03\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"145.02\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"144.89\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"145.35\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"145.34\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"145.07\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1379.0\",\\n \"share_price\": \"145.01\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2664.0\",\\n \"share_price\": \"145.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"144.99\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"717.0\",\\n \"share_price\": \"144.98\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1618.0\",\\n \"share_price\": \"144.97\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"144.96\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1850.0\",\\n \"share_price\": \"144.95\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1350.0\",\\n \"share_price\": \"144.94\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"144.93\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"144.92\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"144.91\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1691.0\",\\n \"share_price\": \"144.9\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"144.88\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"144.87\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"144.86\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2094.0\",\\n \"share_price\": \"144.85\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"56.0\",\\n \"share_price\": \"144.84\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"144.83\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"950.0\",\\n \"share_price\": \"144.82\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18579.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10450.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21421.0\",\\n \"share_price\": \"5.75\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"145.43\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"145.42\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"145.41\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"145.4\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"550.0\",\\n \"share_price\": \"145.39\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"762.0\",\\n \"share_price\": \"145.38\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"145.36\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"145.33\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"145.32\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"145.3\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"145.29\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"288.0\",\\n \"share_price\": \"145.27\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"145.26\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"145.25\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"145.24\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"145.23\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"145.22\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"145.21\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"145.2\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1021.0\",\\n \"share_price\": \"145.19\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"145.18\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"145.16\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"145.15\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"145.14\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"145.12\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"145.11\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21421.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2007-07-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Chief Financial Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"135625.0\",\\n \"share_price\": \"144.28\"\\n },\\n {\\n \"transaction_date\": \"2007-07-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"133.18\"\\n },\\n {\\n \"transaction_date\": \"2007-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"113.62\"\\n },\\n {\\n \"transaction_date\": \"2007-04-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-04-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"100.05\"\\n },\\n {\\n \"transaction_date\": \"2007-04-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-04-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10625.0\",\\n \"share_price\": \"101.58\"\\n },\\n {\\n \"transaction_date\": \"2007-03-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"GORE, ALBERT JR\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"91.13\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"83.28\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"83.29\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"812.0\",\\n \"share_price\": \"12.725\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"552.0\",\\n \"share_price\": \"82.88\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"812.0\",\\n \"share_price\": \"12.725\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11856.0\",\\n \"share_price\": \"14.03\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7700.0\",\\n \"share_price\": \"83.05\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"610.0\",\\n \"share_price\": \"83.045\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"83.04\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"83.03\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9516.0\",\\n \"share_price\": \"83.02\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11840.0\",\\n \"share_price\": \"83.01\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2556.0\",\\n \"share_price\": \"83.25\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"83.24\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"83.13\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"83.23\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"323.0\",\\n \"share_price\": \"83.1\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"83.22\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"11856.0\",\\n \"share_price\": \"14.03\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5879.0\",\\n \"share_price\": \"83.06\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"83.16\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3077.0\",\\n \"share_price\": \"83.17\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2085.0\",\\n \"share_price\": \"83.18\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3725.0\",\\n \"share_price\": \"83.19\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3575.0\",\\n \"share_price\": \"83.2\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"83.21\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"12.125\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1126.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6437.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6438.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15250.0\",\\n \"share_price\": \"14.03\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18750.0\",\\n \"share_price\": \"14.03\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33313.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1621.0\",\\n \"share_price\": \"83.06\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"83.07\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"83.08\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1750.0\",\\n \"share_price\": \"82.89\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"260.0\",\\n \"share_price\": \"83.01\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"92221.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"82.91\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7779.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"83.055\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7779.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"83.26\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"83.27\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"990.0\",\\n \"share_price\": \"83.11\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15685.0\",\\n \"share_price\": \"83.1\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2377.0\",\\n \"share_price\": \"83.09\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10785.0\",\\n \"share_price\": \"83.0\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"82.91\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"82.9\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"819.0\",\\n \"share_price\": \"82.89\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2648.0\",\\n \"share_price\": \"82.88\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35403.0\",\\n \"share_price\": \"82.87\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"82.86\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"83.0\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"83.13\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4144.0\",\\n \"share_price\": \"14.03\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"83.12\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"83.16\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"12.125\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7477.0\",\\n \"share_price\": \"83.15\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"83.14\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17221.0\",\\n \"share_price\": \"15.475\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8640.0\",\\n \"share_price\": \"83.12\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"83.13\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"38144.0\",\\n \"share_price\": \"14.03\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4900.0\",\\n \"share_price\": \"83.05\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12300.0\",\\n \"share_price\": \"83.06\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"83.07\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"83.08\"\\n },\\n {\\n \"transaction_date\": \"2007-02-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"782.0\",\\n \"share_price\": \"83.09\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"84.5\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17000.0\",\\n \"share_price\": \"84.46\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"84.45\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"84.43\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"84.42\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"130000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"130000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"84.48\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45000.0\",\\n \"share_price\": \"84.4\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"84.39\"\\n },\\n {\\n \"transaction_date\": \"2007-02-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"84.36\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1984.0\",\\n \"share_price\": \"86.22\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"71422.0\",\\n \"share_price\": \"86.0\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"390000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"470000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"86.24\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"86.21\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"86.225\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"730.0\",\\n \"share_price\": \"86.235\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1216.0\",\\n \"share_price\": \"86.23\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7064.0\",\\n \"share_price\": \"86.2\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"86.195\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8800.0\",\\n \"share_price\": \"86.19\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6300.0\",\\n \"share_price\": \"86.18\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"86.17\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"86.165\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14315.0\",\\n \"share_price\": \"86.16\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"64215.0\",\\n \"share_price\": \"86.15\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"86.145\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"213367.0\",\\n \"share_price\": \"86.14\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"86.135\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2440.0\",\\n \"share_price\": \"86.13\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22600.0\",\\n \"share_price\": \"86.12\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11800.0\",\\n \"share_price\": \"86.11\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"86.105\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19797.0\",\\n \"share_price\": \"86.1\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"86.06\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3750.0\",\\n \"share_price\": \"86.05\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"86.04\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"86.03\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"86.02\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"86.01\"\\n },\\n {\\n \"transaction_date\": \"2007-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"80000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2007-01-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"85.99\"\\n },\\n {\\n \"transaction_date\": \"2007-01-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"95.73\"\\n },\\n {\\n \"transaction_date\": \"2007-01-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"94.3\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"168.0\",\\n \"share_price\": \"94.34\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6404.0\",\\n \"share_price\": \"94.4\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"94.55\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"96.0\",\\n \"share_price\": \"94.59\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"94.21\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3007.0\",\\n \"share_price\": \"94.23\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"393.0\",\\n \"share_price\": \"94.24\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"260.0\",\\n \"share_price\": \"94.26\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3885.0\",\\n \"share_price\": \"94.27\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"246.0\",\\n \"share_price\": \"94.28\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"409.0\",\\n \"share_price\": \"94.29\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"94.33\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"532.0\",\\n \"share_price\": \"94.32\"\\n },\\n {\\n \"transaction_date\": \"2007-01-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"94.31\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"328.0\",\\n \"share_price\": \"95.6\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1621.0\",\\n \"share_price\": \"95.9\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"95.82\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150.0\",\\n \"share_price\": \"95.69\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2602.0\",\\n \"share_price\": \"95.65\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"95.62\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"95.49\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1177.0\",\\n \"share_price\": \"95.5\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4722.0\",\\n \"share_price\": \"95.58\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"95.59\"\\n },\\n {\\n \"transaction_date\": \"2007-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"95.61\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4125.0\",\\n \"share_price\": \"94.86\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"94.85\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"94.84\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"94.83\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"95.12\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2175.0\",\\n \"share_price\": \"94.67\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"94.77\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"94.79\"\\n },\\n {\\n \"transaction_date\": \"2007-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"89.35\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"89.37\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"435.0\",\\n \"share_price\": \"89.36\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"89.38\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3296.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16704.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5200.0\",\\n \"share_price\": \"89.08\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"89.21\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10900.0\",\\n \"share_price\": \"89.22\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"89.23\"\\n },\\n {\\n \"transaction_date\": \"2007-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"65.0\",\\n \"share_price\": \"89.34\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"83.82\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"83.91\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8591.0\",\\n \"share_price\": \"83.88\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"83.84\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3909.0\",\\n \"share_price\": \"83.83\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8437\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8437\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10209.0\",\\n \"share_price\": \"83.78\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"83.79\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"83.8\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"83.81\"\\n },\\n {\\n \"transaction_date\": \"2006-12-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13391.0\",\\n \"share_price\": \"83.83\"\\n },\\n {\\n \"transaction_date\": \"2006-12-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2006-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ROSENBERG, DONALD J\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-09-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2006-09-12\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"72.78\"\\n },\\n {\\n \"transaction_date\": \"2006-09-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHMIDT, ERIC E\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"69.73\"\\n },\\n {\\n \"transaction_date\": \"2006-09-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHMIDT, ERIC E\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"69.76\"\\n },\\n {\\n \"transaction_date\": \"2006-09-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHMIDT, ERIC E\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.77\"\\n },\\n {\\n \"transaction_date\": \"2006-09-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHMIDT, ERIC E\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.05\"\\n },\\n {\\n \"transaction_date\": \"2006-09-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHMIDT, ERIC E\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.67\"\\n },\\n {\\n \"transaction_date\": \"2006-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2287.0\",\\n \"share_price\": \"66.96\"\\n },\\n {\\n \"transaction_date\": \"2006-08-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"15.0\",\\n \"share_price\": \"66.11\"\\n },\\n {\\n \"transaction_date\": \"2006-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"63.94\"\\n },\\n {\\n \"transaction_date\": \"2006-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"68.3\"\\n },\\n {\\n \"transaction_date\": \"2006-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"68.3\"\\n },\\n {\\n \"transaction_date\": \"2006-07-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"66.83\"\\n },\\n {\\n \"transaction_date\": \"2006-07-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"62.04\"\\n },\\n {\\n \"transaction_date\": \"2006-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6704.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13296.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"61.8\"\\n },\\n {\\n \"transaction_date\": \"2006-07-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8439\"\\n },\\n {\\n \"transaction_date\": \"2006-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"61.21\"\\n },\\n {\\n \"transaction_date\": \"2006-07-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3296.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16704.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"60.13\"\\n },\\n {\\n \"transaction_date\": \"2006-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"60.96\"\\n },\\n {\\n \"transaction_date\": \"2006-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-07-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"48125.0\",\\n \"share_price\": \"57.1\"\\n },\\n {\\n \"transaction_date\": \"2006-07-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"57.34\"\\n },\\n {\\n \"transaction_date\": \"2006-06-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25.0\",\\n \"share_price\": \"55.9\"\\n },\\n {\\n \"transaction_date\": \"2006-06-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"58.14\"\\n },\\n {\\n \"transaction_date\": \"2006-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"95.0\",\\n \"share_price\": \"59.81\"\\n },\\n {\\n \"transaction_date\": \"2006-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"190.0\",\\n \"share_price\": \"60.02\"\\n },\\n {\\n \"transaction_date\": \"2006-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"64.33\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"72.25\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"72.26\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2807.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2807.0\",\\n \"share_price\": \"72.27\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"72.28\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9307.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"121406.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"121406.0\",\\n \"share_price\": \"72.0\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"72.05\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1325.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1325.0\",\\n \"share_price\": \"72.06\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"72.07\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6585.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6585.0\",\\n \"share_price\": \"72.08\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"72.09\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2177.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2177.0\",\\n \"share_price\": \"72.1\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"72.11\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"72.12\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"72.13\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"72.205\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"72.215\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"72.225\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"72.23\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"72.24\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40693.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2006-05-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8500.0\",\\n \"share_price\": \"71.95\"\\n },\\n {\\n \"transaction_date\": \"2006-05-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"70.15\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"70.78\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2118.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2118.0\",\\n \"share_price\": \"71.32\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"71.33\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5482.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5482.0\",\\n \"share_price\": \"71.35\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"71.36\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"71.37\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"71.37\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"537.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"537.0\",\\n \"share_price\": \"71.375\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250.0\",\\n \"share_price\": \"71.22\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"71.23\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2437.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"750.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1250.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6872.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6872.0\",\\n \"share_price\": \"71.11\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"347.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"347.0\",\\n \"share_price\": \"71.2\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2920.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2920.0\",\\n \"share_price\": \"71.22\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"71.23\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"71.235\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"71.24\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"71.25\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6800.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6800.0\",\\n \"share_price\": \"71.26\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"71.27\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"71.28\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"71.29\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1379.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1379.0\",\\n \"share_price\": \"71.3\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"71.31\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4582.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4582.0\",\\n \"share_price\": \"71.32\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"8.555\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"71.221\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2050.0\",\\n \"share_price\": \"71.22\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2050.0\",\\n \"share_price\": \"10.895\"\\n },\\n {\\n \"transaction_date\": \"2006-05-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"FADELL, ANTHONY\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"71.38\"\\n },\\n {\\n \"transaction_date\": \"2006-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"70.93\"\\n },\\n {\\n \"transaction_date\": \"2006-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"77293.0\",\\n \"share_price\": \"70.9\"\\n },\\n {\\n \"transaction_date\": \"2006-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"70.91\"\\n },\\n {\\n \"transaction_date\": \"2006-04-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"70.92\"\\n },\\n {\\n \"transaction_date\": \"2006-04-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"65.17\"\\n },\\n {\\n \"transaction_date\": \"2006-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"69.03\"\\n },\\n {\\n \"transaction_date\": \"2006-04-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6704.0\",\\n \"share_price\": \"70.24\"\\n },\\n {\\n \"transaction_date\": \"2006-04-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13296.0\",\\n \"share_price\": \"11.38\"\\n },\\n {\\n \"transaction_date\": \"2006-04-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6704.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-04-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13296.0\",\\n \"share_price\": \"70.24\"\\n },\\n {\\n \"transaction_date\": \"2006-04-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6704.0\",\\n \"share_price\": \"11.8438\"\\n },\\n {\\n \"transaction_date\": \"2006-04-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13296.0\",\\n \"share_price\": \"11.38\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"69.73\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"69.75\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14100.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14100.0\",\\n \"share_price\": \"69.8\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"69.86\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"70.02\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"70.25\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"70.05\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12704.0\",\\n \"share_price\": \"11.38\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"70.44\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"70.91\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.38\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"70.91\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7296.0\",\\n \"share_price\": \"11.38\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"68.69\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"68.79\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"68.95\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"69.45\"\\n },\\n {\\n \"transaction_date\": \"2006-04-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"69.5\"\\n },\\n {\\n \"transaction_date\": \"2006-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1296.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"70.64\"\\n },\\n {\\n \"transaction_date\": \"2006-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1296.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18704.0\",\\n \"share_price\": \"11.38\"\\n },\\n {\\n \"transaction_date\": \"2006-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18704.0\",\\n \"share_price\": \"68.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"18704.0\",\\n \"share_price\": \"11.38\"\\n },\\n {\\n \"transaction_date\": \"2006-04-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1296.0\",\\n \"share_price\": \"68.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9375.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8079.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2546.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"65.86\"\\n },\\n {\\n \"transaction_date\": \"2006-04-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"993.0\",\\n \"share_price\": \"62.1\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7202.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"61.91\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15771.0\",\\n \"share_price\": \"61.89\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"61.92\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"61.93\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"61.95\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"61.78\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5736.0\",\\n \"share_price\": \"61.77\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5298.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5298.0\",\\n \"share_price\": \"61.77\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7202.0\",\\n \"share_price\": \"61.74\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"61.9\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"61.96\"\\n },\\n {\\n \"transaction_date\": \"2006-04-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"62.06\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"33465.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"63.09\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"63.11\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"63.12\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"565.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"565.0\",\\n \"share_price\": \"63.13\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"62.93\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"63.01\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"63.1\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"63.25\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"63.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33465.0\",\\n \"share_price\": \"63.08\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"63.14\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7500.0\",\\n \"share_price\": \"63.21\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3070.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3070.0\",\\n \"share_price\": \"63.65\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20500.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20500.0\",\\n \"share_price\": \"62.65\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"63.36\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"63.4\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"63.46\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"63.65\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"63.72\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"63.83\"\\n },\\n {\\n \"transaction_date\": \"2006-04-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7700.0\",\\n \"share_price\": \"62.7\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"62.87\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"62.86\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"62.85\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"62.84\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"62.83\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2065.0\",\\n \"share_price\": \"62.82\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2168.0\",\\n \"share_price\": \"62.81\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2246.0\",\\n \"share_price\": \"62.8\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6180.0\",\\n \"share_price\": \"62.79\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"62.76\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1591.0\",\\n \"share_price\": \"62.75\"\\n },\\n {\\n \"transaction_date\": \"2006-03-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"350.0\",\\n \"share_price\": \"62.74\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"59.6925\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.9375\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.945\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.946\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.95\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.9505\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.9515\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7700.0\",\\n \"share_price\": \"59.96\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.968\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"59.97\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.974\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.976\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.978\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.993\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.996\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.0\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.008\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.01\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.0195\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.0235\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"74000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"64000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.62\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.625\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.629\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.63\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.656\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"59.66\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.27\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.025\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.03\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"60.035\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.05\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.0548\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.06\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.065\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.096\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.1245\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.125\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.1275\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.1485\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"60.1535\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.208\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.275\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.299\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.306\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.326\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.3525\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"60.36\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.3675\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.376\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.4\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.401\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.41\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.417\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.466\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.54\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.6\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"74000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.8995\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.9\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.911\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.918\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4300.0\",\\n \"share_price\": \"59.92\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.9275\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"59.93\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.9815\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"59.986\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.99\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.669\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.67\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.686\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"59.7\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.705\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.706\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.725\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.745\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.75\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.755\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.78\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.781\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.7885\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.79\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.84\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.8405\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.85\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.853\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.865\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.8655\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.87\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.8825\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"64000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"62000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.08\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.114\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.1262\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.1275\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.14\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.172\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.18\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.2205\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.2525\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.26\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.2677\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.33\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.497\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.599\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.616\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"112707.0\",\\n \"share_price\": \"59.96\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"112707.0\",\\n \"share_price\": \"59.96\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"91500.0\",\\n \"share_price\": \"59.96\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"112707.0\",\\n \"share_price\": \"59.96\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted StockUnit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"91500.0\",\\n \"share_price\": \"59.96\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.272\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.28\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.286\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.288\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.2975\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.3028\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.318\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"59.32\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.337\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.36\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.37\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.3723\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"59.464\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"114375.0\",\\n \"share_price\": \"59.96\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"114375.0\",\\n \"share_price\": \"59.96\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"114375.0\",\\n \"share_price\": \"59.96\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Units\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.872\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.85\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.833\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.83\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.78\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.7265\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.7205\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.6945\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.681\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.664\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.66\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.6537\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.64\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.6095\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"60.607\"\\n },\\n {\\n \"transaction_date\": \"2006-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2006-03-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOBS, STEVEN P\",\\n \"executive_title\": \"Director, Chief Executive Officer\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4573553.0\",\\n \"share_price\": \"64.66\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"69.21\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"69.2\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"68.86\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"69.34\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"69.18\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"68.53\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"68.83\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"68.9\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"68.99\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"69.0\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20500.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20500.0\",\\n \"share_price\": \"69.1\"\\n },\\n {\\n \"transaction_date\": \"2006-03-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"69.23\"\\n },\\n {\\n \"transaction_date\": \"2006-02-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"71.52\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1175.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1175.0\",\\n \"share_price\": \"71.25\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"71.26\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"71.27\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"71.315\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250.0\",\\n \"share_price\": \"71.385\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16845.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1825.0\",\\n \"share_price\": \"71.0\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"71.03\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1420.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1420.0\",\\n \"share_price\": \"71.03\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"71.04\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"71.04\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"71.05\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12510.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12510.0\",\\n \"share_price\": \"71.05\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"71.06\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"71.07\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"71.15\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"71.16\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"71.17\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"71.18\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"71.19\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"71.21\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33155.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35.0\",\\n \"share_price\": \"71.215\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"71.23\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"71.23\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"71.24\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"71.24\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"71.24\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1550.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1550.0\",\\n \"share_price\": \"71.25\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1485.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1485.0\",\\n \"share_price\": \"71.25\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2006-02-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"71.25\"\\n },\\n {\\n \"transaction_date\": \"2006-02-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-02-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"65.11\"\\n },\\n {\\n \"transaction_date\": \"2006-02-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-02-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"75.76\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.47\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.45\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20500.0\",\\n \"share_price\": \"75.42\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20500.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.27\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.5\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.06\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"74.9\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.98\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.86\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.2\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.53\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"75.63\"\\n },\\n {\\n \"transaction_date\": \"2006-02-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.58\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"74.2\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"74.2718\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"74.24\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7300.0\",\\n \"share_price\": \"74.648\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"74.65\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"74.6682\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"74.6682\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"74.67\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16.0\",\\n \"share_price\": \"74.69\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.72\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.79\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"11584.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11584.0\",\\n \"share_price\": \"75.1465\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7900.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.23\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"74.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.3258\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"74.34\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"74.35\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"74.37\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"74.4\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8300.0\",\\n \"share_price\": \"74.4958\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"74.57\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"74.59\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"74.64\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.0\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.01\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"74.03\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"74.05\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.06\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6300.0\",\\n \"share_price\": \"74.0916\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.1\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"74.11\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.12\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"74.14\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"74.15\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"74.1598\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"74.16\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"74.18\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"74.19\"\\n },\\n {\\n \"transaction_date\": \"2006-01-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"72.06\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2020.0\",\\n \"share_price\": \"71.87\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"71.88\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"72.1867\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"72.26\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6.0\",\\n \"share_price\": \"71.97\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"71.98\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"71.99\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"72.01\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2020.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"72.08\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"72.1023\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"71.05\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2344.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"71.8314\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"71.84\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"71.85\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11900.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2344.0\",\\n \"share_price\": \"71.08\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"71.09\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"71.1\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"71.11\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"71.13\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"756.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"756.0\",\\n \"share_price\": \"71.29\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"71.35\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"71.36\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"71.46\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"71.55\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"71.65\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"71.71\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"71.73\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"71.77\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"72.15\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"71.89\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"71.9\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"71.9141\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"71.92\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"71.93\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"71.95\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"794.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"794.0\",\\n \"share_price\": \"71.96\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"72.31\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6200.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"71.88\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"72.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"71.78\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"72.17\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"71.83\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"71.81\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"180.0\",\\n \"share_price\": \"71.8\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"180.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"71.79\"\\n },\\n {\\n \"transaction_date\": \"2006-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"83.85\"\\n },\\n {\\n \"transaction_date\": \"2006-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3796.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9375.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6829.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"76.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5046.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9376.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5578.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4328.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6296.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9376.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-09\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"76.79\"\\n },\\n {\\n \"transaction_date\": \"2006-01-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9375.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7546.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"75.48\"\\n },\\n {\\n \"transaction_date\": \"2006-01-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3079.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"74.88\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"75.08\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2650.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2650.0\",\\n \"share_price\": \"75.1\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"750.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"750.0\",\\n \"share_price\": \"75.12\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6500.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6500.0\",\\n \"share_price\": \"75.14\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5390.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5390.0\",\\n \"share_price\": \"75.15\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7900.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"39790.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"74.64\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4300.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4300.0\",\\n \"share_price\": \"75.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"395.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"395.0\",\\n \"share_price\": \"75.37\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70210.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"74.89\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"74.91\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"74.95\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"74.96\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"74.97\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5100.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5100.0\",\\n \"share_price\": \"74.98\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"74.99\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"75.0\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5200.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5200.0\",\\n \"share_price\": \"75.04\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"74.65\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"74.69\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"74.71\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"74.72\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"74.73\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"74.77\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"375.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"75.48\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8796.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9375.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1829.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4330.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4330.0\",\\n \"share_price\": \"75.16\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"75.17\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7100.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7100.0\",\\n \"share_price\": \"75.18\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"75.19\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9680.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9680.0\",\\n \"share_price\": \"75.2\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"75.21\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"75.22\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"75.23\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"75.24\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3797.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3797.0\",\\n \"share_price\": \"75.25\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4303.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4303.0\",\\n \"share_price\": \"75.27\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13500.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13500.0\",\\n \"share_price\": \"75.28\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1605.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1605.0\",\\n \"share_price\": \"75.29\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"375.0\",\\n \"share_price\": \"74.79\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"74.8\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"725.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"725.0\",\\n \"share_price\": \"74.81\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"74.82\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"74.83\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"74.84\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"74.85\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"74.87\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25700.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"825.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"825.0\",\\n \"share_price\": \"75.37\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"175.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"175.0\",\\n \"share_price\": \"75.38\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4700.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4700.0\",\\n \"share_price\": \"75.4\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"75.42\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"75.43\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"75.49\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17400.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17400.0\",\\n \"share_price\": \"75.49\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"75.51\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"75.55\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"75.59\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"75.62\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"74.63\"\\n },\\n {\\n \"transaction_date\": \"2006-01-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21800.0\",\\n \"share_price\": \"74.67\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21800.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"74.45\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"72.77\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"73.0\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"110000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"72.75\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"72.6\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"72.35\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"72.94\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"72.9\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"72.89\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"72.85\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"72.75\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"72.41\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"13.8125\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"72.76\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"73.13\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"73.2\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"73.31\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"73.67\"\\n },\\n {\\n \"transaction_date\": \"2006-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21400.0\",\\n \"share_price\": \"74.05\"\\n },\\n {\\n \"transaction_date\": \"2005-12-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7220.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2005-12-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2005-12-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2005-12-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2005-12-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2005-12-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2005-12-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Chief Operating Officer\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2005-12-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"165.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7125.0\",\\n \"share_price\": \"69.44\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7125.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"69.77\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"69.75\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"69.5\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"69.44\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14300.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"68.89\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"69.73\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"69.72\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"42850.0\",\\n \"share_price\": \"69.7\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"42850.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21475.0\",\\n \"share_price\": \"69.69\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"8.6563\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21475.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"69.63\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"69.61\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"69.6\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-12-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21425.0\",\\n \"share_price\": \"69.58\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"65.57\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"94705.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"94705.0\",\\n \"share_price\": \"66.0\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"66.01\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3095.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3095.0\",\\n \"share_price\": \"66.02\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"91180.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"65.54\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"65.53\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"65.52\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"65.51\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"65.505\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1720.0\",\\n \"share_price\": \"65.55\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"65.525\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"91180.0\",\\n \"share_price\": \"65.5\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1720.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-11-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"65.56\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4700.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"61.64\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4700.0\",\\n \"share_price\": \"61.65\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17865.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17865.0\",\\n \"share_price\": \"61.66\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5520.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5520.0\",\\n \"share_price\": \"61.67\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"61.68\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"61.69\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"19450.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19450.0\",\\n \"share_price\": \"61.7\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"61.71\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7950.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7950.0\",\\n \"share_price\": \"61.72\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1515.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1515.0\",\\n \"share_price\": \"61.75\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"61.84\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"6187.0\"\\n },\\n {\\n \"transaction_date\": \"2005-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"235000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15000.0\",\\n \"share_price\": \"57.44\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"57.46\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"57.5\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"57.74\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"65000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"57.14\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"57.2\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"57.2\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"57.22\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"57.28\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"57.3\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"57.31\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"57.32\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"45000.0\",\\n \"share_price\": \"8.406\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45000.0\",\\n \"share_price\": \"57.33\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"57.34\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"57.36\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"57.37\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"57.38\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"57.4\"\\n },\\n {\\n \"transaction_date\": \"2005-11-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"57.41\"\\n },\\n {\\n \"transaction_date\": \"2005-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"671.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"579.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9375.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"56.29\"\\n },\\n {\\n \"transaction_date\": \"2005-10-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11296.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8704.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"11296.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8704.0\",\\n \"share_price\": \"56.4\"\\n },\\n {\\n \"transaction_date\": \"2005-10-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8704.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11296.0\",\\n \"share_price\": \"56.4\"\\n },\\n {\\n \"transaction_date\": \"2005-10-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"56.3464\"\\n },\\n {\\n \"transaction_date\": \"2005-10-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6296.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13704.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"14.905\"\\n },\\n {\\n \"transaction_date\": \"2005-10-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"56.29\"\\n },\\n {\\n \"transaction_date\": \"2005-10-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"14.905\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"56.84\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"56.86\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"56.19\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8100.0\",\\n \"share_price\": \"56.29\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"56.31\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"56.32\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"56.44\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"56.62\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6804.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1296.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"56.72\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"56.54\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.71\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"56.69\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"56.7\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"56.73\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"56.74\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"56.75\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"56.76\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"56.82\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"54.83\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"56.38\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"56.18\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"56.29\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"56.31\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"56.376\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"56.15\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"56.16\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"56.17\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"56.171\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"56.36\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"56.37\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"56.06\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6200.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6200.0\",\\n \"share_price\": \"56.06\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"56.07\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.082\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"56.09\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"56.095\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"56.1\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"56.11\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"56.118\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"56.12\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"56.13\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"56.14\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10900.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.904\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"55.92\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"55.93\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"55.94\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"55.95\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"55.98\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"55.99\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.181\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"56.19\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.197\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"56.2\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.205\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"56.21\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"56.21\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"56.23\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"56.231\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"56.26\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"56.048\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.05\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.053\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"56.04\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12600.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"55.79\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"55.799\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"55.8\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"55.83\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.831\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.839\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"55.84\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.85\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.852\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"55.858\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"55.86\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"56.0\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.0\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"56.01\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"56.02\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.024\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"56.03\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"56.033\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"55.9\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"55.63\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"55.64\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"55.6\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"55.62\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"55.63\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"55.87\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"55.88\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"55.89\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"55.65\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"55.66\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"55.67\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"55.68\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"55.69\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"55.7\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"55.71\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"55.72\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.724\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"55.74\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.743\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"55.77\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"55.78\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9300.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"55.51\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"55.52\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"55.53\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.54\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"55.54\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"55.56\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"55.57\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"55.58\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"55.59\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"55.59\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1683.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1683.0\",\\n \"share_price\": \"55.44\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"55.481\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"55.49\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"55.5\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"54.86\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"54.936\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"54.99\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"55.069\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"55.1\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"55.12\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"55.13\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"55.14\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"55.15\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"55.19\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"55.22\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"55.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8300.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"54.66\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"54.68\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"54.69\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"54.78\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"54.8\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"54.81\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"55.24\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.229\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"55.21\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"417.0\",\\n \"share_price\": \"55.43\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"417.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"55.42\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"55.4\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"55.39\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"55.38\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"55.37\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"55.325\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"55.31\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"55.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"55.28\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"55.27\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9000.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4100.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"56.29\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"56.28\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"13.813\"\\n },\\n {\\n \"transaction_date\": \"2005-10-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.48\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.509\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.54\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"53.57\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19800.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"51.89\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"51.9\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"51.91\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"51.94\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4221.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4221.0\",\\n \"share_price\": \"51.95\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3779.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3779.0\",\\n \"share_price\": \"51.96\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"51.97\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4624.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4624.0\",\\n \"share_price\": \"51.98\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"51.99\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"52.02\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"51.78\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"51.79\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"51.81\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4600.0\",\\n \"share_price\": \"51.84\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"51.85\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"51.86\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"51.87\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"54.58\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1972.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1972.0\",\\n \"share_price\": \"51.59\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3119.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3119.0\",\\n \"share_price\": \"51.6\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1788.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1788.0\",\\n \"share_price\": \"51.61\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"51.62\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"51.65\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"51.67\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"51.69\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"51.7\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"51.71\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"51.72\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"51.73\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"51.27\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"51.28\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"51.37\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"51.4\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"51.42\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"51.43\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"51.439\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"51.44\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"51.45\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"51.46\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"51.47\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"51.48\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"51.49\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"51.5\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"51.503\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"54.51\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13900.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"54.497\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4840.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2181.0\",\\n \"share_price\": \"51.55\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2181.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"51.53\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"51.52\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"53.09\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"51.74\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"51.75\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"51.77\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"51.88\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"51.89\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"34600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"53.067\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"52.88\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"52.84\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"52.43\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"52.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11200.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.942\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"53.87\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"53.78\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.88\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"54.0\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"54.02\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4840.0\",\\n \"share_price\": \"51.58\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.783\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"76.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"76.0\",\\n \"share_price\": \"52.03\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"52.04\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"52.05\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"52.12\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"52.13\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.75\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.71\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"53.7\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"53.67\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.66\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.65\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"54.72\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"54.69\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"54.66\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"54.61\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"54.59\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20200.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"54.087\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"54.19\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"54.2\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"54.21\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"54.23\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"54.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"54.263\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"54.34\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"54.341\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"54.39\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"54.41\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"54.43\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"54.47\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11700.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"53.58\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"53.6\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"12.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.623\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.64\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.1\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"53.15\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"53.18\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"53.239\"\\n },\\n {\\n \"transaction_date\": \"2005-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"53.39\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"53.17\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"53.19\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2265.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2265.0\",\\n \"share_price\": \"53.2\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"53.22\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.23\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"53.24\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.246\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"53.32\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.326\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9800.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"53.0\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.004\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5100.0\",\\n \"share_price\": \"53.01\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"53.015\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.02\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13400.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"52.73\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"52.733\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"52.74\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"52.75\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"52.78\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"52.79\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"52.8\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"52.805\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"52.808\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"52.818\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"52.82\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"52.9\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1491.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1491.0\",\\n \"share_price\": \"52.94\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"52.95\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"609.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"609.0\",\\n \"share_price\": \"52.99\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4200.0\",\\n \"share_price\": \"53.08\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"53.09\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"53.095\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"52.641\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"52.49\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"52.5\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"52.509\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"52.51\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"52.52\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"52.53\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"52.55\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"52.56\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"52.562\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"52.57\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"52.58\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"52.59\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"52.6\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"52.6\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"52.646\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"52.655\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"52.66\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"52.688\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"52.69\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"52.7\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"52.708\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"52.71\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"52.72\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"27500.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"52.48\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1253.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"52.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"52.3\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4200.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"53.07\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"53.07\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.056\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4100.0\",\\n \"share_price\": \"53.04\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"52.61\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"52.619\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4800.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4800.0\",\\n \"share_price\": \"52.62\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"52.63\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4800.0\",\\n \"share_price\": \"52.64\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"53.031\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"53.03\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"53.35\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"52.326\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"52.34\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"52.37\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"52.47\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"52.48\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"53.748\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"53.72\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"53.73\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1253.0\",\\n \"share_price\": \"53.75\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2147.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2147.0\",\\n \"share_price\": \"53.76\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"53.811\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"53.82\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.85\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"53.86\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"53.48\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"53.5\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"53.505\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"53.51\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"53.52\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.53\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.54\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"53.58\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.59\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"53.62\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"850.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"850.0\",\\n \"share_price\": \"53.67\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4500.0\",\\n \"share_price\": \"53.69\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"53.7\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"53.703\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.71\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13250.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"53.33\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"53.34\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.356\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"53.37\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"53.37\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"53.38\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"53.39\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"53.4\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"53.41\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5350.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5350.0\",\\n \"share_price\": \"53.42\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"53.432\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.45\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"53.46\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"53.47\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16650.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.1\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"53.128\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"53.13\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"53.14\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.15\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3935.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3935.0\",\\n \"share_price\": \"53.16\"\\n },\\n {\\n \"transaction_date\": \"2005-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"10.195\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4911.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"53.85\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"53.88\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.91\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.92\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.95\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4300.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"52.82\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"52.85\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"52.86\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"52.87\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"52.91\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"52.923\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1928.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1928.0\",\\n \"share_price\": \"52.93\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"52.93\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1472.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"52.941\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"52.95\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"52.97\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8100.0\",\\n \"share_price\": \"8.5469\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"54.01\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"54.02\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"54.03\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3743.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3743.0\",\\n \"share_price\": \"53.24\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"53.248\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"53.248\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.249\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"53.289\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"53.29\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4500.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24929.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.548\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1600.0\",\\n \"share_price\": \"53.55\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"53.551\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"53.56\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3176.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3176.0\",\\n \"share_price\": \"53.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"53.26\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.26\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5500.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5500.0\",\\n \"share_price\": \"53.27\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"53.275\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"53.31\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1710.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1710.0\",\\n \"share_price\": \"53.33\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2400.0\",\\n \"share_price\": \"53.34\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.342\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"53.61\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"53.62\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.636\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.64\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"53.65\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"53.67\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10600.0\",\\n \"share_price\": \"8.457\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2690.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2690.0\",\\n \"share_price\": \"53.35\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3000.0\",\\n \"share_price\": \"53.36\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5200.0\",\\n \"share_price\": \"53.37\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"53.372\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"53.38\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"53.58\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"53.591\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"53.594\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4300.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4300.0\",\\n \"share_price\": \"53.6\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"53.608\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2543.0\",\\n \"share_price\": \"53.41\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"440.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"440.0\",\\n \"share_price\": \"53.45\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"660.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"660.0\",\\n \"share_price\": \"53.46\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"53.469\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"53.48\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.51\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"53.53\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"53.54\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7900.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19090.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"53.69\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"53.7\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"53.71\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"53.72\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"53.725\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4100.0\",\\n \"share_price\": \"53.73\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"53.74\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"53.75\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"53.76\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1557.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1557.0\",\\n \"share_price\": \"53.4\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.405\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2543.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"53.141\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50.0\",\\n \"share_price\": \"53.15\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"53.16\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2218.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2218.0\",\\n \"share_price\": \"53.17\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2482.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2482.0\",\\n \"share_price\": \"53.18\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"53.19\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"53.196\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.21\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4911.0\",\\n \"share_price\": \"53.22\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"53.226\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"53.23\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8100.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18157.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4200.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4200.0\",\\n \"share_price\": \"52.97\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"52.98\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1384.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1384.0\",\\n \"share_price\": \"53.0\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.01\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"53.02\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"53.02\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"53.02\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"53.78\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"53.8\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.81\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"53.82\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"53.83\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"53.84\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"29600.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"53.132\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"53.138\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4696.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4696.0\",\\n \"share_price\": \"53.14\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"53.149\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2600.0\",\\n \"share_price\": \"53.03\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4400.0\",\\n \"share_price\": \"53.04\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1516.0\",\\n \"share_price\": \"53.06\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.06\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"53.07\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4900.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4900.0\",\\n \"share_price\": \"53.11\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"53.11\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1424.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1424.0\",\\n \"share_price\": \"53.12\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8300.0\",\\n \"share_price\": \"8.547\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20724.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"52.78\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"52.818\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"52.92\"\\n },\\n {\\n \"transaction_date\": \"2005-10-17\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1472.0\",\\n \"share_price\": \"52.94\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"53.87\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"54.32\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20500.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20500.0\",\\n \"share_price\": \"54.43\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"53.97\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"54.07\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"54.1\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"54.13\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"53.96\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"53.93\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"54.15\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"21500.0\",\\n \"share_price\": \"54.18\"\\n },\\n {\\n \"transaction_date\": \"2005-10-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"43000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"46.85\"\\n },\\n {\\n \"transaction_date\": \"2005-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"46.74\"\\n },\\n {\\n \"transaction_date\": \"2005-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"123900.0\",\\n \"share_price\": \"46.19\"\\n },\\n {\\n \"transaction_date\": \"2005-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"123900.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"46.15\"\\n },\\n {\\n \"transaction_date\": \"2005-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"46.21\"\\n },\\n {\\n \"transaction_date\": \"2005-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"47.0\"\\n },\\n {\\n \"transaction_date\": \"2005-08-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"23.7188\"\\n },\\n {\\n \"transaction_date\": \"2005-08-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"450000.0\",\\n \"share_price\": \"11.73\"\\n },\\n {\\n \"transaction_date\": \"2005-08-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"11.73\"\\n },\\n {\\n \"transaction_date\": \"2005-08-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"450000.0\",\\n \"share_price\": \"46.5\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"46.12\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"46.1\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"46.07\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"46.3\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"46.31\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"46.32\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"46.38\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"46.43\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"80000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"45.9\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"45.95\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"45.97\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"45.98\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"46.02\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"220000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"46.28\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"46.26\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"46.15\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"46.13\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"8.4063\"\\n },\\n {\\n \"transaction_date\": \"2005-08-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"46.11\"\\n },\\n {\\n \"transaction_date\": \"2005-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"46.1\"\\n },\\n {\\n \"transaction_date\": \"2005-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"42.99\"\\n },\\n {\\n \"transaction_date\": \"2005-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"42.99\"\\n },\\n {\\n \"transaction_date\": \"2005-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"18700.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18700.0\",\\n \"share_price\": \"42.87\"\\n },\\n {\\n \"transaction_date\": \"2005-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14996.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3704.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10004.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"41.65\"\\n },\\n {\\n \"transaction_date\": \"2005-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9996.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4996.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"41.5\"\\n },\\n {\\n \"transaction_date\": \"2005-07-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15004.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"40.85\"\\n },\\n {\\n \"transaction_date\": \"2005-07-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"40.82\"\\n },\\n {\\n \"transaction_date\": \"2005-07-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19996.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-07-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"38.65\"\\n },\\n {\\n \"transaction_date\": \"2005-07-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-06-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2005-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"39.78\"\\n },\\n {\\n \"transaction_date\": \"2005-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3704.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16296.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-04-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"44.24\"\\n },\\n {\\n \"transaction_date\": \"2005-04-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8704.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-04-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11296.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-04-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"9.25\"\\n },\\n {\\n \"transaction_date\": \"2005-04-08\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"43.75\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"88.19\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"88.18\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"88.2\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2459.0\",\\n \"share_price\": \"88.21\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"88.22\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"88.24\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"88.25\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"88.26\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"88.27\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4025.0\",\\n \"share_price\": \"88.28\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"88.29\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1634.0\",\\n \"share_price\": \"88.3\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1050.0\",\\n \"share_price\": \"88.31\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"88.32\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"88.23\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8032.0\",\\n \"share_price\": \"88.1471\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"88.16\"\\n },\\n {\\n \"transaction_date\": \"2005-02-16\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"88.17\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1204.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5004.0\",\\n \"share_price\": \"78.31\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"840.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9740.0\",\\n \"share_price\": \"78.4\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"78.24\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"78.23\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3900.0\",\\n \"share_price\": \"78.19\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3900.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13987.0\",\\n \"share_price\": \"78.18\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13987.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25388.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"78.46\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"78.44\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"78.43\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"660.0\",\\n \"share_price\": \"78.42\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"660.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"78.2\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"840.0\",\\n \"share_price\": \"78.41\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9740.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"78.38\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"78.36\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"78.35\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5414.0\",\\n \"share_price\": \"78.34\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5414.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3330.0\",\\n \"share_price\": \"78.33\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3330.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1204.0\",\\n \"share_price\": \"78.32\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"49612.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5004.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4050.0\",\\n \"share_price\": \"78.3\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4050.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4700.0\",\\n \"share_price\": \"78.29\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4700.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6171.0\",\\n \"share_price\": \"78.28\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6171.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"78.27\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"78.26\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3100.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-02-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"78.25\"\\n },\\n {\\n \"transaction_date\": \"2005-01-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"72.36\"\\n },\\n {\\n \"transaction_date\": \"2005-01-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2900.0\",\\n \"share_price\": \"72.38\"\\n },\\n {\\n \"transaction_date\": \"2005-01-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"72.4\"\\n },\\n {\\n \"transaction_date\": \"2005-01-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4817.0\",\\n \"share_price\": \"72.35\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23000.0\",\\n \"share_price\": \"71.22\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"23000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"71.2\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"71.17\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"71.04\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"32000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32000.0\",\\n \"share_price\": \"71.05\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"71.07\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"71.11\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"71.4\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"53000.0\",\\n \"share_price\": \"71.32\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"53000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"71.3\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"71.27\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"71.25\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"72.27\"\\n },\\n {\\n \"transaction_date\": \"2005-01-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"69.67\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"69.71\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"69.74\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"69.78\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6570.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6570.0\",\\n \"share_price\": \"69.8\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4313.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4313.0\",\\n \"share_price\": \"69.81\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"69.82\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"69.83\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4700.0\",\\n \"share_price\": \"69.84\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"69.3\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"27761.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"27761.0\",\\n \"share_price\": \"69.38\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"69.4\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"69.46\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"69.46\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"69.69\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25384.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"995.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"995.0\",\\n \"share_price\": \"69.48\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"69.49\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3500.0\",\\n \"share_price\": \"69.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"69.54\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"69.6\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4170.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4170.0\",\\n \"share_price\": \"69.61\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"675.0\",\\n \"share_price\": \"69.62\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4600.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4600.0\",\\n \"share_price\": \"69.65\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4599.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4599.0\",\\n \"share_price\": \"69.66\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"35000.0\",\\n \"share_price\": \"69.73\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"69.85\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"90000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"90000.0\",\\n \"share_price\": \"69.9\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"26700.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26700.0\",\\n \"share_price\": \"70.0\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3600.0\",\\n \"share_price\": \"70.0075\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"17200.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"17200.0\",\\n \"share_price\": \"17.01\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"70.07\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"70.1\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"70.01\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.5625\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.563\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.5694\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.588\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.653\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10200.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"70.5615\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.4645\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.4743\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"70.4801\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.4882\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.49\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3800.0\",\\n \"share_price\": \"70.52\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.533\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.5557\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.5605\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"41800.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.2937\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.295\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"70.3\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.31\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"70.3132\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.327\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.329\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.3295\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.345\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.3568\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.3575\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.381\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.1666\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.221\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.242\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.247\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.2487\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.2528\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.253\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.258\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.272\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.2746\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.2789\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.281\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.2874\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.11\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"70.117\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.1175\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.1176\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.119\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.121\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.1268\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.1325\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.133\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.9808\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"69.986\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.996\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.0\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.0494\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.801\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.828\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.643\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.652\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.677\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.716\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"70.25\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.26\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"70.27\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.972\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.975\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.98\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.009\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.012\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.06\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.0604\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.087\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.088\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.0956\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.776\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.834\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.8395\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.856\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"69.86\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.866\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.88\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.886\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.895\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.896\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.951\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.9605\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.964\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.37\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.376\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.378\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.4055\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.4225\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"69.4995\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.5977\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.6885\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.704\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"69.708\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"69.7675\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"34000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1450.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1450.0\",\\n \"share_price\": \"70.09\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13400.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5400.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5400.0\",\\n \"share_price\": \"70.11\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4900.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4900.0\",\\n \"share_price\": \"70.12\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"18740.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18740.0\",\\n \"share_price\": \"70.18\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1350.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"70.23\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"69.99\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7716.0\",\\n \"share_price\": \"70.0\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12563.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"37701.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37701.0\",\\n \"share_price\": \"69.66\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"69.72\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3200.0\",\\n \"share_price\": \"69.73\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6900.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6900.0\",\\n \"share_price\": \"69.75\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"69.76\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"69.79\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4700.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1100.0\",\\n \"share_price\": \"70.29\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12197.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12197.0\",\\n \"share_price\": \"70.31\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9100.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9100.0\",\\n \"share_price\": \"70.32\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26797.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"70.02\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3700.0\",\\n \"share_price\": \"70.03\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4100.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4100.0\",\\n \"share_price\": \"70.04\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"70.05\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"70.06\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13400.0\",\\n \"share_price\": \"70.01\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1350.0\",\\n \"share_price\": \"70.19\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"70.22\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1400.0\",\\n \"share_price\": \"70.24\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"37437.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"23203.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1080.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1080.0\",\\n \"share_price\": \"69.85\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"69.87\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"69.88\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"69.89\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50047.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50047.0\",\\n \"share_price\": \"69.9\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"500.0\",\\n \"share_price\": \"69.91\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"69.92\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"69.93\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"69.94\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2200.0\",\\n \"share_price\": \"69.95\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"69.96\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4736.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4736.0\",\\n \"share_price\": \"69.97\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7900.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7900.0\",\\n \"share_price\": \"69.98\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7716.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24616.0\",\\n \"share_price\": \"47.4375\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.4296\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.438\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.445\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.451\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.38\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.3858\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.42\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.259\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.2675\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.1373\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.14\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.1501\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.1595\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.16\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.165\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"70.4544\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"70.4475\"\\n },\\n {\\n \"transaction_date\": \"2005-01-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"70.25\"\\n },\\n {\\n \"transaction_date\": \"2005-01-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"73.87\"\\n },\\n {\\n \"transaction_date\": \"2005-01-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-13\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-11\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"68.25\"\\n },\\n {\\n \"transaction_date\": \"2005-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"69.9\"\\n },\\n {\\n \"transaction_date\": \"2005-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-10\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4352.0\",\\n \"share_price\": \"67.62\"\\n },\\n {\\n \"transaction_date\": \"2005-01-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4352.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5648.0\",\\n \"share_price\": \"67.62\"\\n },\\n {\\n \"transaction_date\": \"2005-01-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5648.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4352.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5648.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"41000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"41000.0\",\\n \"share_price\": \"63.87\"\\n },\\n {\\n \"transaction_date\": \"2005-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"64.34\"\\n },\\n {\\n \"transaction_date\": \"2005-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"34000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"34000.0\",\\n \"share_price\": \"63.5\"\\n },\\n {\\n \"transaction_date\": \"2005-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2005-01-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"64.63\"\\n },\\n {\\n \"transaction_date\": \"2004-11-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"68750.0\",\\n \"share_price\": \"20.39\"\\n },\\n {\\n \"transaction_date\": \"2004-11-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18750.0\",\\n \"share_price\": \"20.39\"\\n },\\n {\\n \"transaction_date\": \"2004-11-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"24.6\"\\n },\\n {\\n \"transaction_date\": \"2004-11-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12500.0\",\\n \"share_price\": \"24.6\"\\n },\\n {\\n \"transaction_date\": \"2004-11-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"20.39\"\\n },\\n {\\n \"transaction_date\": \"2004-11-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62500.0\",\\n \"share_price\": \"55.0\"\\n },\\n {\\n \"transaction_date\": \"2004-11-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"62500.0\",\\n \"share_price\": \"24.6\"\\n },\\n {\\n \"transaction_date\": \"2004-11-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"68750.0\",\\n \"share_price\": \"55.0\"\\n },\\n {\\n \"transaction_date\": \"2004-11-03\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"55.23\"\\n },\\n {\\n \"transaction_date\": \"2004-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12080.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87920.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-11-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"53.0\"\\n },\\n {\\n \"transaction_date\": \"2004-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"50.5875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-28\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1850.0\",\\n \"share_price\": \"47.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2450.0\",\\n \"share_price\": \"47.43\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4270.0\",\\n \"share_price\": \"13.99\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4270.0\",\\n \"share_price\": \"47.46\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3280.0\",\\n \"share_price\": \"13.99\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3280.0\",\\n \"share_price\": \"47.47\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1120.0\",\\n \"share_price\": \"19.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1120.0\",\\n \"share_price\": \"47.47\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5138.0\",\\n \"share_price\": \"19.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5138.0\",\\n \"share_price\": \"47.49\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1850.0\",\\n \"share_price\": \"19.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1892.0\",\\n \"share_price\": \"19.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1892.0\",\\n \"share_price\": \"47.51\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2450.0\",\\n \"share_price\": \"13.99\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"20.38\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"47.52\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"47.53\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"47.54\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"142.0\",\\n \"share_price\": \"20.38\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"142.0\",\\n \"share_price\": \"47.56\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"19.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"13.99\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"20.38\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12734.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12734.0\",\\n \"share_price\": \"47.48\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"158.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"158.0\",\\n \"share_price\": \"47.56\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"47.57\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"47.59\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"47.6\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"47.61\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"47.64\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3671.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3671.0\",\\n \"share_price\": \"47.65\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8200.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8200.0\",\\n \"share_price\": \"47.66\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13900.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13900.0\",\\n \"share_price\": \"47.7\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1611.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1611.0\",\\n \"share_price\": \"47.71\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2526.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2526.0\",\\n \"share_price\": \"47.72\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"47.73\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"11.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"20.38\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"958.0\",\\n \"share_price\": \"47.51\"\\n },\\n {\\n \"transaction_date\": \"2004-10-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"958.0\",\\n \"share_price\": \"20.38\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"45.22\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"45.34\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7100.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19580.0\",\\n \"share_price\": \"47.12\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12755.0\",\\n \"share_price\": \"45.27\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employeee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6680.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6680.0\",\\n \"share_price\": \"45.36\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30420.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30420.0\",\\n \"share_price\": \"47.12\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"47.01\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"45000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6645.0\",\\n \"share_price\": \"45.27\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9885.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9885.0\",\\n \"share_price\": \"45.28\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4850.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4850.0\",\\n \"share_price\": \"45.29\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10280.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10280.0\",\\n \"share_price\": \"45.3\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"45.31\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"580.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"580.0\",\\n \"share_price\": \"45.37\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"45.38\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"45.43\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1480.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1480.0\",\\n \"share_price\": \"45.47\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1500.0\",\\n \"share_price\": \"45.48\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36300.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"125000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"125000.0\",\\n \"share_price\": \"44.72\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"222800.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"222800.0\",\\n \"share_price\": \"44.72\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"44.94\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"44.95\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1900.0\",\\n \"share_price\": \"44.96\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"45.32\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"45.33\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7100.0\",\\n \"share_price\": \"45.35\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6645.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"95420.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"74160.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"245.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"245.0\",\\n \"share_price\": \"44.77\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"44.78\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employeee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"74664.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employeee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12755.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"45.26\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2100.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"11314.0\",\\n \"share_price\": \"45.25\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"11314.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12900.0\",\\n \"share_price\": \"45.24\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12900.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"19700.0\",\\n \"share_price\": \"45.23\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"19700.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1886.0\",\\n \"share_price\": \"45.21\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1886.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40809.0\",\\n \"share_price\": \"45.2\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40809.0\",\\n \"share_price\": \"23.6875\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"45.49\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"45.02\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"44.94\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3355.0\",\\n \"share_price\": \"44.9\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3355.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45000.0\",\\n \"share_price\": \"47.06\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30420.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"80000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"80000.0\",\\n \"share_price\": \"47.0\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"19580.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"44.87\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"44.86\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-18\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5000.0\",\\n \"share_price\": \"44.84\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"44.55\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"44.54\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"44.53\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"800.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"648.0\",\\n \"share_price\": \"44.85\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"44.58\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1552.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1552.0\",\\n \"share_price\": \"44.85\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"44.91\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2052.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1800.0\",\\n \"share_price\": \"44.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7300.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"648.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"648.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"876.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"876.0\",\\n \"share_price\": \"44.51\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"44.52\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"44.57\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1124.0\",\\n \"share_price\": \"44.56\"\\n },\\n {\\n \"transaction_date\": \"2004-10-15\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1124.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1210.0\",\\n \"share_price\": \"43.18\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3640.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3640.0\",\\n \"share_price\": \"43.0\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"43.01\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50.0\",\\n \"share_price\": \"43.02\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1700.0\",\\n \"share_price\": \"43.03\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1210.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3300.0\",\\n \"share_price\": \"43.19\"\\n },\\n {\\n \"transaction_date\": \"2004-10-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"40.69\"\\n },\\n {\\n \"transaction_date\": \"2004-10-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"40.7\"\\n },\\n {\\n \"transaction_date\": \"2004-10-06\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.61\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.63\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.67\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.7\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.75\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.78\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.79\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"38.8333\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.84\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"38.87\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.88\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.9\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"38.98\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"17.1325\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-10-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"35.4\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"35.39\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"35.33\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"35.6\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"35.35\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"35.5\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"35.45\"\\n },\\n {\\n \"transaction_date\": \"2004-09-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"35.44\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"31.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"31.0\",\\n \"share_price\": \"34.28\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"75.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75.0\",\\n \"share_price\": \"34.3\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"648.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"34.31\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"34.32\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9252.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3094.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3094.0\",\\n \"share_price\": \"34.26\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-09-01\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"34.27\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1618.0\",\\n \"share_price\": \"34.1\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"140.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"34.06\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"34.05\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"140.0\",\\n \"share_price\": \"34.07\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2800.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"34.04\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4042.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4042.0\",\\n \"share_price\": \"34.09\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-31\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1618.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3900.0\",\\n \"share_price\": \"33.99\"\\n },\\n {\\n \"transaction_date\": \"2004-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2422.0\",\\n \"share_price\": \"33.98\"\\n },\\n {\\n \"transaction_date\": \"2004-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2422.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3578.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3578.0\",\\n \"share_price\": \"34.0\"\\n },\\n {\\n \"transaction_date\": \"2004-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"34.03\"\\n },\\n {\\n \"transaction_date\": \"2004-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3900.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-30\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5600.0\",\\n \"share_price\": \"34.6\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"435.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"435.0\",\\n \"share_price\": \"34.51\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"400.0\",\\n \"share_price\": \"34.525\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"34.54\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5600.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2265.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2265.0\",\\n \"share_price\": \"34.61\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300.0\",\\n \"share_price\": \"34.635\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"34.68\"\\n },\\n {\\n \"transaction_date\": \"2004-08-27\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"33.57\"\\n },\\n {\\n \"transaction_date\": \"2004-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"648.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-26\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9352.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-08-14\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"LEVINSON, ARTHUR D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"30.84\"\\n },\\n {\\n \"transaction_date\": \"2004-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"YORK, JEROME B\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"31.39\"\\n },\\n {\\n \"transaction_date\": \"2004-08-05\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"CAMPBELL, WILLIAM V\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"31.39\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"32.11\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"107498.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"137918.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"74584.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"178000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"178000.0\",\\n \"share_price\": \"32.05\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"32.07\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"32.08\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"32.09\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"32000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-07-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32000.0\",\\n \"share_price\": \"32.12\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"31.89\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"31.88\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60000.0\",\\n \"share_price\": \"31.87\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"60000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"31.86\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"32.05\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"31.85\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"31.83\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"31.9\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TEVANIAN, AVADIS\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"31.94\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"31.93\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"31.96\"\\n },\\n {\\n \"transaction_date\": \"2004-07-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"31.97\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"29.53\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.55\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"44000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.0\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.01\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.05\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.14\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.15\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.16\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.17\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.18\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"29.19\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.2\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.21\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.23\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"36000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.26\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"45100.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"29.87\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.86\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.85\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.83\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5100.0\",\\n \"share_price\": \"29.82\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5100.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15500.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"29.95\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.92\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.9\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6800.0\",\\n \"share_price\": \"29.88\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6800.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"29.81\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.56\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.54\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.5\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.46\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.44\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.42\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.36\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.34\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.75\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.74\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.69\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.68\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.67\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.66\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.62\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.6\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.57\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"700.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.93\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.81\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.3\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.31\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.35\"\\n },\\n {\\n \"transaction_date\": \"2004-06-07\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.52\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"29.04\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"29.07\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"29.06\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"151400.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"29.03\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24000.0\",\\n \"share_price\": \"29.02\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"24000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22000.0\",\\n \"share_price\": \"29.01\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"22000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"59000.0\",\\n \"share_price\": \"29.0\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"59000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.15\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.16\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.17\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"29.05\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"105600.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.14\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"29.13\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"29.12\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"29.11\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"29.1\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"29.09\"\\n },\\n {\\n \"transaction_date\": \"2004-06-04\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"29.08\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.1\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16700.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"94400.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"29.13\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.11\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"29.08\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"29.07\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"29.06\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"15700.0\",\\n \"share_price\": \"29.05\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"15700.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"29.03\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"29.02\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"29.01\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-06-02\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16700.0\",\\n \"share_price\": \"29.0\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.43\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"DREXLER, MILLARD S\",\\n \"executive_title\": \"Director\",\\n \"security_type\": \"Director Stock Option\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.41\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"44000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"44000.0\",\\n \"share_price\": \"28.0\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.01\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.03\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.04\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.05\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.06\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.07\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.08\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.09\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.1\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.17\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.31\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.32\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"28.45\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.46\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.48\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"28.38\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"28.39\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"28.4\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"600.0\",\\n \"share_price\": \"28.41\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100.0\",\\n \"share_price\": \"28.41\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.42\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.44\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"78000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.37\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"28.36\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-05-25\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.34\"\\n },\\n {\\n \"transaction_date\": \"2004-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"135000.0\",\\n \"share_price\": \"26.7\"\\n },\\n {\\n \"transaction_date\": \"2004-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"175000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"26.9\"\\n },\\n {\\n \"transaction_date\": \"2004-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"26.73\"\\n },\\n {\\n \"transaction_date\": \"2004-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-29\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"135000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.5\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"27.51\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.52\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.53\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.55\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.56\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.57\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.58\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.6\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.61\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.64\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"27.65\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.66\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"78000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.72\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.75\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.77\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.8\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.82\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.87\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.88\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.89\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.9\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.91\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.92\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.53\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.54\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.55\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.57\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.59\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.6\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.61\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.63\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.64\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.65\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.66\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.67\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.68\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"27000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.38\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.4\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.41\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.42\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.46\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.44\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.5\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.51\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.52\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.07\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.09\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.1\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.12\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.18\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.19\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.23\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.27\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.29\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.31\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.32\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.33\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.34\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.37\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"38000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.43\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.47\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.48\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.49\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40300.0\",\\n \"share_price\": \"27.7\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.82\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.86\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"72000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.63\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.69\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.7\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.71\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.85\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.68\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9700.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9700.0\",\\n \"share_price\": \"27.69\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"40300.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.71\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.73\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.76\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.8\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.58\"\\n },\\n {\\n \"transaction_date\": \"2004-04-23\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"27.45\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.92\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"27.93\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"27.94\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.95\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.99\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.0\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.01\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.03\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.05\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.07\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"28.08\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.1\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.12\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.15\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"80000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.76\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"27.78\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"27.79\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.8\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.81\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"27.82\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.83\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.84\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.85\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.87\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"27.88\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"24000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24000.0\",\\n \"share_price\": \"27.89\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.9\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.91\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"88000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.5\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.52\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.53\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.54\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"27.55\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.57\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.59\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.6\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.61\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.64\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.65\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.66\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.68\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.7\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.75\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.62\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.64\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.69\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.71\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.75\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.57\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.91\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.92\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.93\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.94\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.95\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.98\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.0\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.02\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.8\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.85\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"34000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.13\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.15\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.2\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.28\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.3\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.31\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.32\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.33\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.34\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.35\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.36\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.39\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.41\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.45\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"52000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.89\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.88\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.86\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.85\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.03\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.04\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"48000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.53\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"27.86\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"28.112\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.54\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.56\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.89\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.05\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.07\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.08\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.11\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.12\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.15\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.77\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.78\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.79\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.8\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.81\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.82\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.83\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.84\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.87\"\\n },\\n {\\n \"transaction_date\": \"2004-04-22\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.59\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.83\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.84\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.86\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.88\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.89\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.9\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.92\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.04\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.06\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.1\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"77400.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.62\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.63\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7300.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7300.0\",\\n \"share_price\": \"27.64\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.65\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.66\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.68\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.69\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.7\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.71\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"27.73\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"9400.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.48\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.49\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.5\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.57\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.74\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.75\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.76\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.77\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.78\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"54000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"22600.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.45\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.46\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.47\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.52\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.53\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.54\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.55\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.56\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"46000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.56\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.6\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.61\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.62\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2700.0\",\\n \"share_price\": \"27.5\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.55\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.65\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.66\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2300.0\",\\n \"share_price\": \"27.71\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.73\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"27.74\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"27.75\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.77\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62300.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7700.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7700.0\",\\n \"share_price\": \"27.71\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.72\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2500.0\",\\n \"share_price\": \"27.73\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.74\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.75\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.76\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.79\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.8\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.81\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.82\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.83\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"62200.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.52\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.53\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.54\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.57\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"27.6\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.63\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"13800.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"13800.0\",\\n \"share_price\": \"27.64\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.66\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.67\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.68\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.69\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.7\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87800.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"226000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"226000.0\",\\n \"share_price\": \"27.85\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"27.9\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.1\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SERLET, BERTRAND\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1000.0\",\\n \"share_price\": \"0.0\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"9400.0\",\\n \"share_price\": \"27.79\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"27.8\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.79\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.61\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.59\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.58\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"27.46\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"87700.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.1\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.05\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.04\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.02\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.91\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.89\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.88\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.87\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.84\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.83\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.82\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25700.0\",\\n \"share_price\": \"27.81\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"25700.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.8\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"27.81\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.82\"\\n },\\n {\\n \"transaction_date\": \"2004-04-21\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.1\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.11\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"28.18\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"40000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.96\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.95\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.94\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.93\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.77\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.76\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.71\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.7\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.68\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.67\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.66\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.6\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"28.16\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"28.15\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"28.14\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.19\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"20000.0\",\\n \"share_price\": \"28.17\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"86000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.19\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"28.18\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"28.17\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"28.16\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"28.15\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.14\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.12\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.11\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.1\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.07\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.05\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.04\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.03\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.98\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.97\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"64000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.3\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.29\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"28.2\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.21\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.22\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.28\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.23\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.25\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.26\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.27\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.26\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.25\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.24\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.23\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.22\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.21\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.2\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"30000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"60000.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"33334.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26666.0\",\\n \"share_price\": \"9.0625\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"130000.0\",\\n \"share_price\": \"28.0972\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"130000.0\",\\n \"share_price\": \"18.5\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"93334.0\",\\n \"share_price\": \"28.0972\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"93334.0\",\\n \"share_price\": \"17.0938\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26666.0\",\\n \"share_price\": \"28.0972\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"SCHILLER, PHILIP W\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"26666.0\",\\n \"share_price\": \"9.0625\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.62\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.66\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.67\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.7\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.71\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.72\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.34\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.32\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.31\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.76\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.77\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.8\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.27\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"32000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.28\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"98000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"56000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.82\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"28.35\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.93\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.94\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.95\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"27.96\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.97\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.99\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.01\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.02\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.05\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.06\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.08\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.09\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.29\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.3\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.31\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.32\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.33\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"28.34\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"44000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-20\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.12\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"28.32\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.99\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"27.98\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.97\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.96\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"27.95\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.94\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.92\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.89\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"94000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.28\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"28.27\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1200.0\",\\n \"share_price\": \"27.94\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.95\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.96\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"27.97\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5300.0\",\\n \"share_price\": \"28.0\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.01\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.02\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.04\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.06\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.07\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.08\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.09\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"54500.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"28.46\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.47\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.48\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.5\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.51\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.53\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"24000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.29\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.3\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.31\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"16000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"14000.0\",\\n \"share_price\": \"28.34\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.35\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.36\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.37\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.38\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.4\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.41\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.42\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.43\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"26000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.08\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.09\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.12\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.16\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.17\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.18\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.19\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.2\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.23\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"6.8348\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"27.98\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"27.99\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.0\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.01\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.02\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.03\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.04\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.05\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.06\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"84000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"6.625\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"28.35\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"28.35\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"6.625\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"3400.0\",\\n \"share_price\": \"28.0753\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"375000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"375000.0\",\\n \"share_price\": \"28.0753\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"28.0753\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"TAMADDON, SINA\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"100000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"150000.0\",\\n \"share_price\": \"28.0\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"28.0\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"50000.0\",\\n \"share_price\": \"6.8438\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"25000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"75000.0\",\\n \"share_price\": \"17.3125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"18000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"27.89\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"70000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.3\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.29\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.28\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.27\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"28.26\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"12000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.25\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.24\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.23\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.22\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.21\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.19\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.17\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.13\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.12\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.1\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"71300.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.49\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.48\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"5700.0\",\\n \"share_price\": \"28.47\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"5700.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"7600.0\",\\n \"share_price\": \"28.46\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"7600.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.45\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.42\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.39\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.38\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.37\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.36\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.35\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.34\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.33\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"28.32\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"10000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.31\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4200.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.69\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"28.64\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"1300.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"ANDERSON, FRED D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"900.0\",\\n \"share_price\": \"28.57\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.26\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.25\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"6000.0\",\\n \"share_price\": \"28.24\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"4000.0\",\\n \"share_price\": \"28.22\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Employee Stock Option\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"72000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"2000.0\",\\n \"share_price\": \"28.44\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"D\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"28.33\"\\n },\\n {\\n \"transaction_date\": \"2004-04-19\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Common Stock\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"8000.0\",\\n \"share_price\": \"16.8125\"\\n },\\n {\\n \"transaction_date\": \"2004-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"RUBINSTEIN, JONATHAN\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2004-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"OPPENHEIMER, PETER\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2004-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"JOHNSON, RONALD B\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"250000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2004-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"HEINEN, NANCY R\",\\n \"executive_title\": \"Senior Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"200000.0\",\\n \"share_price\": \"\"\\n },\\n {\\n \"transaction_date\": \"2004-03-24\",\\n \"ticker\": \"AAPL\",\\n \"executive\": \"COOK, TIMOTHY D\",\\n \"executive_title\": \"Executive Vice President\",\\n \"security_type\": \"Restricted Stock Unit\",\\n \"acquisition_or_disposal\": \"A\",\\n \"shares\": \"300000.0\",\\n \"share_price\": \"\"\\n }\\n ]\\n}'"
|
|
]
|
|
},
|
|
"execution_count": 37,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"get_alpha_vantage_insider_transactions(symbol=\"AAPL\", curr_date=\"2025-12-02\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": []
|
|
}
|
|
],
|
|
"metadata": {
|
|
"kernelspec": {
|
|
"display_name": "tradingagents",
|
|
"language": "python",
|
|
"name": "python3"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 3
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython3",
|
|
"version": "3.13.9"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 4
|
|
}
|